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

Làm thế nào để tìm các giá trị tối thiểu và tối đa trong một Truy vấn MySQL?

Để tìm các giá trị tối thiểu và tối đa trong một truy vấn, hãy sử dụng MySQL UNION. Đầu tiên chúng ta hãy tạo một bảng -

mysql> create table DemoTable
(
   Price int
);
Query OK, 0 rows affected (0.57 sec)

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

mysql> insert into DemoTable values(88);
Query OK, 1 row affected (0.30 sec)
mysql> insert into DemoTable values(100);
Query OK, 1 row affected (0.22 sec)
mysql> insert into DemoTable values(98);
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable values(120);
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 -

+-------+
| Price |
+-------+
| 88    |
| 100   |
| 98    |
| 120   |
+-------+
4 rows in set (0.00 sec)

Sau đây là truy vấn để tìm các giá trị tối thiểu và tối đa trong một Truy vấn MySQL -

mysql> select Price from DemoTable where Price=(select min(Price) from DemoTable)
   UNION
   select Price from DemoTable where Price=(select max(Price) from DemoTable);

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

+-------+
| Price |
+-------+
| 88    |
| 120   |
+-------+
2 rows in set (0.00 sec)