제목처럼 한번의 명령어로 다중조건 검색이 되나요 ?
예를들어 접수된 일중에 처리중인거 접수중인거 완료된거 숫자나 목록을 뽑으려는데요 저건별로 쿼리를 날려야 하는지
한번의 쿼리로 가능한지 궁금하네요
select count(idx) as first_num from work where state='접수중'
select count(idx) as first_num from work where state='처리중'
select count(idx) as first_num from work where state='완료'
|