이를 위해 GROUP BY 절과 함께 MAX()를 사용합니다. 먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable -> ( -> StudentEmailId varchar(20), -> Marks1 int, -> Marks2 int -> ); Query OK, 0 rows affected (0.90 sec)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
mysql> insert into DemoTable values('[email protected]',45,32); Query OK, 1 row affected (0.30 sec) mysql> insert into DemoTable values('[email protected]',32,45); Query OK, 1 row affected (0.34 sec) mysql> insert into DemoTable values('[email protected]',32,45); Query OK, 1 row affected (1.64 sec) mysql> insert into DemoTable values('[email protected]',45,32); Query OK, 1 row affected (0.18 sec)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable ;
이것은 다음과 같은 출력을 생성합니다 -
+-----------------+--------+--------+ | StudentEmailId | Marks1 | Marks2 | +-----------------+--------+--------+ | [email protected] | 45 | 32 | | [email protected] | 32 | 45 | | [email protected] | 32 | 45 | | [email protected] | 45 | 32 | +-----------------+--------+--------+ 4 rows in set (0.00 sec)
다음은 마크1 및 마크2 레코드가 있는 학생의 최대 개별 점수를 가져오는 쿼리입니다. -
mysql> select StudentEmailId,max(Marks1),max(Marks2) from DemoTable -> group by StudentEmailId;
이것은 다음과 같은 출력을 생성합니다 -
+-----------------+-------------+-------------+ | StudentEmailId | max(Marks1) | max(Marks2) | +-----------------+-------------+-------------+ | [email protected] | 45 | 45 | | [email protected] | 32 | 45 | | [email protected] | 45 | 32 | +-----------------+-------------+-------------+ 3 rows in set (0.00 sec)