链式变量赋值在 SQL 中是如何工作的?

How does chaining variable assignments work in SQL?(链式变量赋值在 SQL 中是如何工作的?)
本文介绍了链式变量赋值在 SQL 中是如何工作的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在分析存储过程中的一些旧 SQL 代码.

I'm analyzing some old SQL code in a stored procedure.

Declare @Var1 money, 
    @Var2 money, 
    @Var3 money, 

等等...

Select @Var1 = OldValue, 
       @Var2 = @Var1, 

等等...

所以我想知道当它们都在同一个 select 语句中时这些赋值是如何工作的.我假设在调用 select 后 Var2 = OldValue,但我想确定.

So I'm wondering how these assignments work when they are both in the same select statement. I'm assuming Var2 = OldValue after the select is called, but I want to be sure.

围绕这种情况的规则是什么?赋值是否按照声明的顺序执行?如果是这样,在以下情况下会为 Var2 分配什么值:

What are the rules surrounding this situation? Are the assignments executed in the order that they are declared? If so, what value would be assigned to Var2 in the following case:

Select @Var2 = @Var1,
       @Var1 = OldValue,

谢谢!

推荐答案

DECLARE @Var1 MONEY = 100, @Var2 MONEY = 50 

SELECT @Var1 = @Var2, 
       @Var2 = @Var1 

SELECT  @Var1, @Var2  

退货

--------------------- ---------------------
50.00                 50.00

所以在那种情况下,它们是按从左到右的顺序执行的但是这是不能依赖的!

So at in that case they were executed in Left to Right order but this cannot be relied upon!

如果有多个赋值单个 SELECT 语句中的子句,SQL Server 不保证评估顺序表达式.注意效果是仅在有引用时可见在作业中.

If there are multiple assignment clauses in a single SELECT statement, SQL Server does not guarantee the order of evaluation of the expressions. Note that effects are only visible if there are references among the assignments.

来源 http://msdn.microsoft.com/en-us/library/ms187953.aspx

这篇关于链式变量赋值在 SQL 中是如何工作的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
SQL query to group by day(按天分组的 SQL 查询)
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)