T-SQL 中的大括号
我遇到过以下 t-sql:
SELECT {d'9999-12-31'}
它返回 9999-12-31 00:00:00.000
。
这似乎是将字符串文字的类型转换为DATETIME
。我找不到有关此语法的任何文档,我想知道是否有任何变化,例如,如果我有一个文字 1
但想用 BIGINT
表示它> 不使用 CONVERT()
/CAST()
。
谁能提供有关此语法的更多信息?谢谢。
I've come across the following t-sql:
SELECT {d'9999-12-31'}
Which returns 9999-12-31 00:00:00.000
.
This seems to be converting the type of the string literal to a DATETIME
. I can't find any documentation on this syntax and I'm wondering if there are any variations, for example if I have a literal 1
but want to represent this in a BIGINT
without using CONVERT()
/CAST()
.
Can anyone provide any further information on this syntax? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些是 ODBC 转义序列。请参阅日期、时间和时间戳转义序列 了解更多详情。
也有类似的语法
uniqueidentifiers
SELECT {guid '00000000-0000-0000-0000-000000000000'}
,以及该链接详细介绍的过程调用和其他一些构造。
关于您问题的其余部分,我不知道有任何方法可以将整数文字视为 bigint 或列出影响文字分配数据类型的所有方法的任何特定资源SQL 服务器。以下是一些方法。
退货
These are ODBC escape sequences. See Date, Time, and Timestamp Escape Sequences for more details.
There is also similar syntax for uniqueidentifiers
SELECT {guid '00000000-0000-0000-0000-000000000000'}
,as well as procedure calls and some other constructs detailed off that link.
With regard to the rest of your question I'm not aware of any way of having an integer literal treated as a
bigint
or of any particular resource that lists all the ways of influencing how literals are assigned datatypes by SQL Server. Some ways are below.Returns