SQL Server 字串和時間相互轉換

sdvingo發表於2007-04-01
select convert(smalldatetime, convert(char(10),SSD_SellRecord.VoucherTime,120)) as VoucherTime
from SSD_SellRecord group by convert(smalldatetime, convert(char(10),SSD_SellRecord.VoucherTime,120))

因為要根據日期來group by,所以用convert(char(10),SSD_SellRecord.VoucherTime,120)擷取日期部分。又因為我們希望的最終結果是時間型別,所以還得用convert(smalldatetime, convert(char(10),SSD_SellRecord.VoucherTime,120))進行轉換。[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/443058/viewspace-908097/,如需轉載,請註明出處,否則將追究法律責任。

相關文章