我查看了SQL Server dateformat代码,但是在列表中找不到dd.mm.yyyy hh:mm格式。德语日期格式(代码为4)适用于我,但它不包含hh:mm。有人知道这种格式的代码吗?
答案 0 :(得分:4)
假设您的列名为[datefield]
CONVERT(varchar,[datefield],104)
+ ' '
+ SUBSTRING(CONVERT(varchar,[datefield],108),1,5)
答案 1 :(得分:0)
select CONVERT(varchar,getdate(),101)
+ ' ' + SUBSTRING(CONVERT(varchar,getdate(),108),1,5) + ' '
+ SUBSTRING(CONVERT(varchar,getdate(),109),25,2)
* 您可以将getdate()更改为您尝试转换的日期字段。