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

Hiển thị tất cả các sản phẩm có số lượng cao nhất trong bảng MySQL với thông tin chi tiết về sản phẩm?

Sử dụng MAX () cùng với truy vấn con cho điều này Ở đây, MAX () được sử dụng để nhận số tiền tối đa. Đầu tiên chúng ta hãy tạo một bảng -

mysql> create table DemoTable
(
   ProductId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   ProductName varchar(100),
   ProductAmount int
);
Query OK, 0 rows affected (0.53 sec)

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

mysql> insert into DemoTable(ProductName,ProductAmount) values('Product-1',60);
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable(ProductName,ProductAmount) values('Product-2',40);
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable(ProductName,ProductAmount) values('Product-3',75);
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable(ProductName,ProductAmount) values('Product-4',50);
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable(ProductName,ProductAmount) values('Product-5',75);
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 DemoTable;

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

+-----------+-------------+---------------+
| ProductId | ProductName | ProductAmount |
+-----------+-------------+---------------+
|         1 | Product-1   |            60 |
|         2 | Product-2   |            40 |
|         3 | Product-3   |            75 |
|         4 | Product-4   |            50 |
|         5 | Product-5   |            75 |
+-----------+-------------+---------------+
5 rows in set (0.00 sec)

Sau đây là truy vấn để hiển thị tất cả các sản phẩm có số tiền tối đa -

mysql> select *from DemoTable where ProductAmount=(select max(ProductAmount) from DemoTable);

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

+-----------+-------------+---------------+
| ProductId | ProductName | ProductAmount |
+-----------+-------------+---------------+
|         3 | Product-3   |            75 |
|         5 | Product-5   |            75 |
+-----------+-------------+---------------+
2 rows in set (0.00 sec)