关于如何执行字符串中的命令语句
记得结贴
[解决办法]
use table1
declare @sql_com nchar(40)
declare @sql_where nchar(40)
if (@参数1 <> '')
begin
set @sql_where = @sql_where + ' and 条件1=参数1 '
end
if (@参数2 <> '')
begin
set @sql_where = @sql_where + ' and 条件2=参数2 '
end
set sql_where= ltrim(sql_where)--去除左边所有空格,便于计算
set @sql_where = ' where ' +SUBSTRING(@sql_where,4,len(@sql_where)-3)--去除第一个and,得到正确的过滤字符串
set @sql_com = 'select * from tbale1' + @sql_where --得到想要的命令字符串
--现在问题出现在这里了,我想执行@sql_com里存储的字符串,请问各位大神,后面要怎么写啊?
--打印语句
select @sql_com
--执行语句
exec(@sql_com)