SQL Server:如何设置返回格式?

发布于 2024-08-25 01:59:56 字数 116 浏览 4 评论 0原文

问题:新的 SQL Server 2008 数据库返回英文格式的值(日期/浮点型)。

有没有办法可以设置返回格式?

例如暂时切换数据库语言?

或者只是设置当前查询的语言?

Question: The new SQL Server 2008 database returns me values formatted English (date/float).

Is there a way I can set the return format ?

For example temporarely switching the database language?

Or just set the language for the current query ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

这个俗人 2024-09-01 01:59:56

BOL:指定会话的语言环境。会话语言决定日期时间格式和系统消息。

DECLARE @Today DATETIME
    SET @Today = '12/5/2007'

    SET LANGUAGE Italian
    SELECT DATENAME(month, @Today) AS 'Month Name'

    SET LANGUAGE us_english
    SELECT DATENAME(month, @Today) AS 'Month Name' 
    GO

BOL: Specifies the language environment for the session. The session language determines the datetime formats and system messages.

DECLARE @Today DATETIME
    SET @Today = '12/5/2007'

    SET LANGUAGE Italian
    SELECT DATENAME(month, @Today) AS 'Month Name'

    SET LANGUAGE us_english
    SELECT DATENAME(month, @Today) AS 'Month Name' 
    GO
短叹 2024-09-01 01:59:56

您不能仅在 SQL Server 中为单个语句切换语言,也不能为选择指定不同的语言。

您需要做的是:

  • CONVERT 语句中使用适当的“style”值将 DATETIME 转换为字符串(请参阅 CONVERT 上的 MSDN 文档 了解详细信息)
  • 有一个批处理来切换到所需的语言,执行您的语句,然后切换back
  • 不要在 SQL Server 端进行切换,而是在您的应用程序中进行

You cannot switch the language in SQL Server for just a single statement or specify a different language for a select.

What you need to do is:

  • either convert DATETIME to string using an appropriate "style" value in your CONVERT statement (see the MSDN docs on CONVERT for details)
  • have a batch to switch to the language needed, execute your statement, and then switch back
  • don't do the switching on the SQL Server side, but in your application
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文