getdate() function
本问题已经有最佳答案,请猛点这里访问。
使用
当我使用
1 | SELECT getdate() AS Today's Date |
它给了我:
1 | 2016-05-18 08:32:07.100 |
但我只需要:
1 | 2016-05-18 |
怎么弄到这个?
使用转换The first argument trancates the length,and the last specifies the format you want the date in:
1 | SELECT CONVERT(VARCHAR(10), getdate(), 103) AS [Today's Date] |
如果你使用SQL服务器2012+,你也可能想看EDOC1〔0〕-我认为这是一个阅读/使用的好东西。
EDOCX1/
See this MSDN link for more info