SQL Server 2008动态查询疑问

发布于 2024-11-08 04:19:46 字数 698 浏览 0 评论 0原文

可能的重复:
系统表table master..spt_values的用途是什么,其值的含义是什么?
为什么(以及如何)使用 master 拆分列.. spt_值?

我有一些动态 SQL,我有将要执行的这些行,spt_values 和 type='P' 的含义是什么

declare @Sql nvarchar(max)
select @Sql = ISNULL(@sql + ',', '') + QUOTENAME(RIGHT(number,10))
    from master..spt_values 
    where type='P' and number between 1 and (select COUNT(*) From tableName)

Possible Duplicates:
What is the purpose of system table table master..spt_values and what are the meanings of its values?
Why (and how) to split column using master..spt_values?

I have some dynamic SQL, I have this lines that will be executed, whats the meaning of spt_values, and the type='P'

declare @Sql nvarchar(max)
select @Sql = ISNULL(@sql + ',', '') + QUOTENAME(RIGHT(number,10))
    from master..spt_values 
    where type='P' and number between 1 and (select COUNT(*) From tableName)

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

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

发布评论

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

评论(1

小苏打饼 2024-11-15 04:19:46

spt_valuesmaster 数据库中的一个表。因此,它仅供 SQL Server 内部使用,并且未记录给公众。

基本上,您获得的代码是获取数字结果集的快速方法。

spt_values is a table in the master database. As such, it's meant for internal SQL Server use only, and is undocumented to the public.

Basically the code you've got is a quick way to get your hands on a resultset of numbers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文