在 T-SQL 中将日期格式化为 Mai 2010
如何在 2010 年 5 月(即 06.05.2010 => Mai 2010 或 06.10.2009 => 2009 年 10 月)中格式化日期(smalldatetime),
非常感谢...问候
how do I format a date (smalldatetime) in Mai 2010 (i.e. 06.05.2010 => Mai 2010 or 06.10.2009 => October 2009)
thx a lot... greetings
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用您的列更改
GETDATE()
。Changing
GETDATE()
with your column.您可以使用 CONVERT 函数将其转换为字符串,该函数可以采用名为 style 的可选 3d 参数,该参数采用确定格式的整数。
更多信息此处
You can use the CONVERT function to convert it to a string, the function can take an optional 3d parameter called style that takes an integer determining the formatting.
more info here