이를 위해 서브쿼리와 함께 MAX()를 사용합니다. 여기에서 MAX()는 최대량을 얻기 위해 사용됩니다. 먼저 테이블을 생성하겠습니다 -
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)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
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)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+-----------+-------------+---------------+ | 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)
다음은 최대 금액을 가진 모든 제품을 표시하는 쿼리입니다 -
mysql> select *from DemoTable where ProductAmount=(select max(ProductAmount) from DemoTable);
이것은 다음과 같은 출력을 생성합니다 -
+-----------+-------------+---------------+ | ProductId | ProductName | ProductAmount | +-----------+-------------+---------------+ | 3 | Product-3 | 75 | | 5 | Product-5 | 75 | +-----------+-------------+---------------+ 2 rows in set (0.00 sec)