본문 바로가기

Development/Web & Server

[SQL] 최고값을 가진 항목 가져오는 sql 문

테이블 구조

id-----------date-------------value

SQL 문
select * from table where date in (select max(date) from table)