这个 mysql 查询的 Sql 服务器等效项?
我已经将 mysql 中的日期列格式化为 DATE_FORMAT(enquiry.enquiryDate,'%d-%b-%Y') as enquiryDate
,现在我想要 sql server 等效于此?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我已经将 mysql 中的日期列格式化为 DATE_FORMAT(enquiry.enquiryDate,'%d-%b-%Y') as enquiryDate
,现在我想要 sql server 等效于此?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以在此处查看转换使用的示例:
http://www.sql-server-helper.com/tips/date-formats.aspx" sql-server-helper.com/tips/date-formats.aspx
或使用此处函数的示例:
http://anubhavg.wordpress.com/2009/06/11/how-to-format-datetime-date-in -sql-server-2005/
you can see an example with convert use here :
http://www.sql-server-helper.com/tips/date-formats.aspx
or examples using a function here:
http://anubhavg.wordpress.com/2009/06/11/how-to-format-datetime-date-in-sql-server-2005/
您可以使用
CONVERT
函数 - 例如:这里有一个格式列表:
http://www.sql-server-helper.com/tips/date-formats.aspx
这里还有一些更多信息:
http://msdn.microsoft.com/en-us/library/ms187928.aspx
You can use the
CONVERT
function - for example:There's a list of formats here:
http://www.sql-server-helper.com/tips/date-formats.aspx
And some more information here:
http://msdn.microsoft.com/en-us/library/ms187928.aspx