728x90
SMALL

SELECT 
T1.MCDP_CD as "진료과코드",
COUNT(T1.APNT_YMD) AS "5월예약건수"
from 

APPOINTMENT T1
where 

to_char(T1.APNT_YMD, 'YYYY-MM-DD') like '2022-%' and 

to_char(T1.APNT_YMD, 'YYYY-MM-DD') like '%-05-%'
GROUP BY 

MCDP_CD
ORDER BY 

COUNT(*), 

MCDP_CD;

728x90

설정

트랙백

댓글