2014年9月1日 星期一

T-SQL CONVERT DateTime 常用日期格式轉換

T-SQL CONVERT DateTime 常用日期格式轉換

T-SQL:
2014-09-01 10:35:44
select CONVERT(char(19), getdate(), 120)

2014-09-01
select CONVERT(char(10), getdate(), 20)

2014/09/01
select CONVERT(char(10), getdate(), 111)

14/09/01
select CONVERT(char(8), getdate(), 11)

20140901
select CONVERT(char(8), getdate(), 112)

140901
select CONVERT(char(6), getdate(), 12)

2014.09.01
select CONVERT(char(10), getdate(), 102)

14.09.01
select CONVERT(char(8), getdate(), 2)