List

금요일, 4월 01, 2016

Oracle SQL - union All 과 order by

  • union All  - select 문 두개를 단순히 합치는게 아닌 이어서 가져오기 위해 사용
  • order by 까지 같이 사용하기 위해선 아래와 같이 한번더 묶어줘야함
1
2
(select * from HP_MESSAGE  where HP_MESSAGE.ISREAD=0 order by msgno desc)
     UNION ALL select * from(select * FROM HP_MESSAGE  where ISREAD=1 order by msgno desc) 
cs

댓글 없음:

댓글 쓰기