gpt4 book ai didi

sql-server - EXEC 语句中的类型转换

转载 作者:行者123 更新时间:2023-12-04 02:30:35 32 4
gpt4 key购买 nike

想象一下,我们有以下声明:

declare @a int;
set @a = 1;

并且需要生成一些信息性消息,例如:
select 'the value of @a is ' + @a;

上面的语句会产生错误,因为需要进行类型转换,正确的做法是:
select 'the value of @a is ' + convert(varchar(10), @a);

那么,如果同样的事情需要动态完成,人们可能会认为以下应该是正确的:
exec('select ''the value of @a is ' + convert(varchar(10), @a) + '''');

令人惊讶的是它不是,并产生语法错误。对面 select声明,在这种情况下正确的做法是:
exec('select ''the value of @a is ' + @a + '''');

那么问题来了,为什么 select中需要类型转换?声明,但在 exec(string) 中是非法的陈述?

最佳答案

当我们运行任何 时,语法已被检查DML 声明 .正如我们所知,Exec 不是 DML 语句,它提供了运行任何脚本的 SQL 环境。
exec( 'select ''@a 的值是 ' + @a + '''') 在 exec 中进行隐式转换。
在这种情况下。
exec('select ''@a 的值是' + convert(varchar(10), @a) + '''');
您正在使用转换函数,该函数用于 DML 操作及其在 exec 之前检查语法。

declare @a int,@str varchar(8000)=''
set @a = 124586;

select @str='select ''the value of @a is ' + convert(varchar(10), @a) + ''''
exec( 'select ''the value of @a is ' + @a + '''')
exec(@str);

关于sql-server - EXEC 语句中的类型转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26135174/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com