Computer >> Máy Tính >  >> Lập trình >> MySQL

Hiển thị số tiền cao nhất từ ​​các id trùng lặp tương ứng trong MySQL

Để hiển thị số tiền cao nhất từ ​​các id trùng lặp tương ứng, hãy sử dụng MAX () cùng với mệnh đề GROUP BY -

mysql> create table DemoTable2003
(
   CustomerId int,
   Amount int
);
Query OK, 0 rows affected (0.65 sec)

Chèn một số bản ghi vào bảng bằng lệnh chèn -

mysql> insert into DemoTable2003 values(101,560);
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable2003 values(102,1080);
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable2003 values(101,570);
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable2003 values(102,870);
Query OK, 1 row affected (0.21 sec)
mysql> insert into DemoTable2003 values(101,460);
Query OK, 1 row affected (0.12 sec)

Hiển thị tất cả các bản ghi từ bảng bằng câu lệnh select -

mysql> select * from DemoTable2003;

Điều này sẽ tạo ra kết quả sau -

+------------+--------+
| CustomerId | Amount |
+------------+--------+
|        101 |    560 |
|        102 |   1080 |
|        101 |    570 |
|        102 |    870 |
|        101 |    460 |
+------------+--------+
5 rows in set (0.00 sec)

Đây là truy vấn để hiển thị số tiền cao nhất từ ​​các id trùng lặp tương ứng -

mysql> select CustomerId, max(Amount) from DemoTable2003
   group by CustomerId;

Điều này sẽ tạo ra kết quả sau -

+------------+-------------+
| CustomerId | max(Amount) |
+------------+-------------+
|        101 |         570 |
|        102 |        1080 |
+------------+-------------+
2 rows in set (0.00 sec)