[MSSQL] CONVERT 날짜변경
CONVERT 날짜변경 날짜(Date) 형식의 값을 특정 문자(String) 포맷(Format)으로 바꾸는 방법 CONVERT( [포맷(길이)], [날짜 값], [변환형식] ) select convert(varchar, getdate(), 120) --조회결과 : 2017-12-04 11:23:27 select convert(varchar(10), getdate(), 120) --조회결과 : 2017-12-04 select convert(varchar(16), getdate(), 120) --조회결과 : 2017-12-04 15:13 코드별 날짜 변환 형식 select convert(varchar, getdate(), 100) --mon dd yyyy hh:miAM (or PM) select conver..