- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我今天在 SQL Server(2008R2 和 2012)中遇到了一个非常奇怪的问题。我正在尝试结合使用连接和 select
语句来构建一个字符串。
我已经找到了解决方法,但我真的很想了解这里发生了什么以及为什么它没有给我预期的结果。有人可以给我解释一下吗?
http://sqlfiddle.com/#!6/7438a/1
根据要求,这里还有代码:
-- base table
create table bla (
[id] int identity(1,1) primary key,
[priority] int,
[msg] nvarchar(max),
[autofix] bit
)
-- table without primary key on id column
create table bla2 (
[id] int identity(1,1),
[priority] int,
[msg] nvarchar(max),
[autofix] bit
)
-- table with nvarchar(1000) instead of max
create table bla3 (
[id] int identity(1,1) primary key,
[priority] int,
[msg] nvarchar(1000),
[autofix] bit
)
-- fill the three tables with the same values
insert into bla ([priority], [msg], [autofix])
values (1, 'A', 0),
(2, 'B', 0)
insert into bla2 ([priority], [msg], [autofix])
values (1, 'A', 0),
(2, 'B', 0)
insert into bla3 ([priority], [msg], [autofix])
values (1, 'A', 0),
(2, 'B', 0)
;
declare @a nvarchar(max) = ''
declare @b nvarchar(max) = ''
declare @c nvarchar(max) = ''
declare @d nvarchar(max) = ''
declare @e nvarchar(max) = ''
declare @f nvarchar(max) = ''
-- I expect this to work and generate 'AB', but it doesn't
select @a = @a + [msg]
from bla
where autofix = 0
order by [priority] asc
-- this DOES work: convert nvarchar(4000)
select @b = @b + convert(nvarchar(4000),[msg])
from bla
where autofix = 0
order by [priority] asc
-- this DOES work: without WHERE clause
select @c = @c + [msg]
from bla
--where autofix = 0
order by [priority] asc
-- this DOES work: without the order by
select @d = @d + [msg]
from bla
where autofix = 0
--order by [priority] asc
-- this DOES work: from bla2, so without the primary key on id
select @e = @e + [msg]
from bla2
where autofix = 0
order by [priority] asc
-- this DOES work: from bla3, so with msg nvarchar(1000) instead of nvarchar(max)
select @f = @f + [msg]
from bla3
where autofix = 0
order by [priority] asc
select @a as a, @b as b, @c as c, @d as d, @e as e, @f as f
最佳答案
TLDR; 这不是用于跨行连接字符串的记录/支持的方法。它有时有效,但有时会失败,因为这取决于您获得的执行计划。
而是使用以下有保证的方法之一
SQL Server 2017+
SELECT @a = STRING_AGG([msg], '') WITHIN GROUP (ORDER BY [priority] ASC)
FROM bla
where autofix = 0
SQL Server 2005+
SELECT @a = (SELECT [msg] + ''
FROM bla
WHERE autofix = 0
ORDER BY [priority] ASC
FOR XML PATH(''), TYPE).value('.', 'nvarchar(max)')
背景
KB article范德诺斯已经链接确实包括该行
The correct behavior for an aggregate concatenation query isundefined.
但随后提供了一种似乎确实表明确定性行为是可能的解决方法,从而使情况变得更加困惑。
In order to achieve the expected results from an aggregateconcatenation query, apply any Transact-SQL function or expression tothe columns in the SELECT list rather than in the ORDER BY clause.
有问题的查询不会将任何表达式应用于 ORDER BY
中的列条款。
2005年文章Ordering guarantees in SQL Server...是否说明
For backwards compatibility reasons, SQL Server provides support forassignments of type SELECT @p = @p + 1 ... ORDER BY at the top-mostscope.
在连接按预期工作的计划中,计算标量具有表达式 [Expr1003] = Scalar Operator([@x]+[Expr1004])
出现在排序上方。
在无法工作的计划中,计算标量出现在排序下方。如 this connect item 中所述从 2006 年开始,表达式 @x = @x + [msg]
出现在对每行进行评估的排序下方,但所有评估最终都使用预分配值 @x
。在 another similar Connect Item从 2006 年开始,微软的回应就提到“解决”这个问题。
Microsoft 对所有后续 Connect 项目中有关此问题(并且有很多)的回应都表明,这根本无法得到保证
we do not make any guarantees on the correctness of concatenationqueries (like using variable assignments with data retrieval in aspecific order). The query output can change in SQL Server 2008depending on the plan choice, data in the tables etc. You shouldn'trely on this working consistently even though the syntax allows you towrite a SELECT statement that mixes ordered rows retrieval withvariable assignment.
The behavior you are seeing is by design. Using assignment operations(concatenation in this example) in queries with ORDER BY clause hasundefined behavior. This can change from release to release or evenwithin a particular server version due to changes in the query plan.You cannot rely on this behavior even if there are workarounds. Seethe below KB article for more details:
http://support.microsoft.com/kb/287515 The ONLY guaranteedmechanism are the following:
- Use cursor to loop through the rows in specific order and concatenate the values
- Use for xml query with ORDER BY to generate the concatenated values
- Use CLR aggregate (this will not work with ORDER BY clause)
The behavior you are seeing is actually by design. This has to do withSQL being a set-manipulation language. All expressions in the SELECTlist (and this includes assignments too) are not guaranteed to beexecuted exactly once for each output row. In fact, SQL queryoptimizer tries hard to execute them as few times as possible. Thiswill give expected results when you are computing the value of thevariable based on some data in the tables, but when the value that youare assigning depends on the previous value of the same variable, theresults may be quite unexpected. If the query optimizer moves theexpression to a different place in the query tree, it may getevaluated less times (or just once, as in one of your examples). Thisis why we don't recommend using the "iteration" type assignments tocompute aggregate values. We find that XML-based workarounds ... usually work well for thecustomers
Even without ORDER BY, we do not guarantee that @var = @var + will produce the concatenated value for any statementthat affects multiple rows. The right-hand side of the expression canbe evaluated either once or multiple times during query execution andthe behavior as I said is plan dependent.
The variable assignment with SELECT statement is a proprietary syntax(T-SQL only) where the behavior is undefined or plan dependent ifmultiple rows are produced. If you need to do the string concatenationthen use a SQLCLR aggregate or FOR XML query based concatenation orother relational methods.
关于sql-server - nvarchar 连接/索引/nvarchar(max) 令人费解的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15138593/
本周我将在 Windows Server 2008 上设置一个专用的 SQL Server 2005 机器,并希望将其精简为尽可能简单,同时仍能发挥全部功能。 为此,“服务器核心”选项听起来很有吸引力
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 已关闭 8 年前。 Improve
我获取了 2014 版本数据库的备份,并尝试在另一台服务器中将其恢复到具有相同名称和登录名的数据库中。此 SQL Server 版本是 2016。 恢复备份文件时,出现此错误: TITLE: Micr
我获取了 2014 版本数据库的备份,并尝试在另一台服务器中将其恢复到具有相同名称和登录名的数据库中。此 SQL Server 版本是 2016。 恢复备份文件时,出现此错误: TITLE: Micr
TFS 是否提供任何增强的方法来存储对 sql server 数据库所做的更改,而不是使用它来对在数据库上执行的 sql 语句的文本文件进行版本控制? 或者我正在寻找的功能是否仅在第 3 方工具(如
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我即将将我的 SQL Server 2012 实例升级到 SQL Server 2014。 我已经克隆了主机 Windows VM 并将其重命名为 foo-2012至 foo-2014 . 重新启动时
我想为 SQL Server 登录授予对数据库的访问权限。我知道 sp_grantdbaccess,但它已被弃用。我可以改用什么以及如何检查登录名是否还没有访问数据库的权限? 场景:UserA 创建数
客户别无选择,只能在接下来的几天内从 sql server 2000 迁移到 2008。测试显示 2005 年的重要功能出现了 Not Acceptable 性能下降,但 2008 年却没有。好消息是
我有一个测试数据库,我需要将其导出到我们客户的测试环境中。 这将是一次性的工作。 我正在使用 SQL Server 2005(我的测试数据库是 SQL Server 2005 Express) 执行此
我需要将一个 CSV 文件导入到 mongoDB 不幸的是我遇到了以下错误: error connecting to host: could not connect to server: se
我以为 R2 是一个补丁/服务包。我一直在寻找下载,但没有看到。因此,我假设 R2 是一个新版本,并且我需要 sqlserver 2008 r2 的安装介质来进行升级? 另外,我需要为新许可证付费吗?
我无法使用 SQL Server Management Studio 连接到 SQL Server。 我有一个连接字符串: 我尝试通过在服务器名中输入 myIP、在登录名中输入 MyID、在密码中
我们希望使用 SQL Server 加密来加密数据库中的几个列。我们还需要在生产和测试环境之间传输数据。看来最好的解决方案是在生产和测试服务器上使用相同的主 key 、证书和对称 key ,以便我可以
有没有可以分析 SQL Server 数据库潜在问题的工具? 例如: a foreign key column that is not indexed 没有 FILL FACTOR 的 uniquei
我正在尝试从我的 SQL 2012 BI 版本建立复制,但我收到一条奇怪的错误消息! "You cannot create a publication from server 'X' because
如果您使用 SQL Server 身份验证 (2005),登录详细信息是否以明文形式通过网络发送? 最佳答案 如您所愿,安全无忧... 您可以相当轻松地配置 SSL,如果您没有受信任的证书,如果您强制
我想将数据从一个表复制到不同服务器之间的另一个表。 如果是在同一服务器和不同的数据库中,我使用了以下 SELECT * INTO DB1..TBL1 FROM DB2..TBL1 (to copy w
我希望得到一些帮助,因为我在这个问题上已经被困了 2 天了! 场景:我可以从我的开发计算机(和其他同事)连接到 SERVER\INSTANCE,但无法从另一个 SQL Server 连接。我得到的错误
我正在尝试从我的 SQL 2012 BI 版本建立复制,但我收到一条奇怪的错误消息! "You cannot create a publication from server 'X' because
我是一名优秀的程序员,十分优秀!