如何使用 TSQL 返回类似于 2012 年 2 月 7 日的日期格式?
使用TSQL,如何返回格式类似于“7-Feb-2012”的日期?
这返回日期:
SELECT DATEPART(d, getdate())
这返回年份:
SELECT DATEPART(yyyy, getdate())
如何返回月份名称?
谢谢,
Using TSQL, How to return a date with a format similar to "7-Feb-2012"?
this returns the day:
SELECT DATEPART(d, getdate())
this returns the year:
SELECT DATEPART(yyyy, getdate())
How to return the month name?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面将为您提供类似“14-Feb-2012”的格式:
如果您只想要月份名称,您可以这样做:
The following will give you the format like "14-Feb-2012":
If you just want the month name, you can do: