2010-09-07 13:25:33nut

轉換日期格式的好用TSQL

TSQL轉換日期格式
http://ithelp.ithome.com.tw/question/10011797

--若要讓datetime型別的資料轉成yyyymmdd格式, 可以用下列語法
Select top 1 replace(convert(varchar(10),getdate(),111),'/','')

Select top 1 convert(nvarchar(50),getdate(),112)
很好用喔