오라클에선 본거 같은데...
여러열의 조건비교 하위질의를 위해
where절에 아래처럼(그룹화한 결과들은 재정렬하여 여러컬럼에 비교)
select *
from tblname
where (colname1, colname2) in (select colname3, min(colname4)
from tblname
where colname5='dddd'
group by colname3
order by count(colname3) desc)
과 같은 질의가 mssql에서도..가능한지요? 아니면..같은 결과를 얻을수있는 방법...?
도와주세요.......
|