如何控制 MS-SQL Server 返回日期时间值的格式?

How do I control the format in which MS-SQL Server returns datetime values?(如何控制 MS-SQL Server 返回日期时间值的格式?)
本文介绍了如何控制 MS-SQL Server 返回日期时间值的格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

具体来说,我希望以纯 (ISO) 格式获取日期格式:

Specifically, I wish to get the date format in a pure (ISO) format:

YYYY-MM-DD HH:mm:ss

YYYY-MM-DD HH:mm:ss

我正在寻找 SET 命令或我可以使用的东西.

I'm looking for a SET command or something that I can use.

我不想依赖服务器的文化设置.

I do not wish to rely on the culture setting of the server.

注意:我对返回日期而不是输入日期的字符串格式感兴趣.

Note: I'm interested in the string format in which dates are returned, not entered.

推荐答案

要更改默认格式,您需要添加一种新语言 (sp_addlanguage),设置它的日期格式,然后为其设置默认语言.可以在这篇旧的技术网文章上找到更多详细信息.

To change the default format you need to add a new language (sp_addlanguage), set it's date format, then set the default language to it. More details can be found on this old technet article.

如果您不想这样做,那么您可以使用 设置日期格式.

If you don't want to do that, then you can change it "per connection" using SET DATEFORMAT.

如果你不想这样做,那么你可以使用 CONVERT 将其转换为每个查询中的相关格式字符串.

And if you don't want to do that, then you can use CONVERT to convert it to the relevent format string in each query.

这篇关于如何控制 MS-SQL Server 返回日期时间值的格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)