MySQL null 값 정렬 순서 변경하기

프로그래밍/기타 2014. 1. 3. 10:36

MySQL 의 ORDER BY 절에서 정렬을 하다보면 값이 null 인 데이터가 처음에 표시되는 경우가 있다.

select hiredate from User order by hiredate ASC



이런경우에 NULL 값을 뒤로 정렬시키기 위해서는 아래의 쿼리를 사용하면 됩니다.

select hiredate from User order by hiredate is null ASC, hiredate ASC



: