首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

关于怎么执行字符串中的命令语句

2013-11-23 
关于如何执行字符串中的命令语句记得结贴[解决办法]use table1declare @sql_com nchar(40)declare @sql_wh

关于如何执行字符串中的命令语句
记得结贴
[解决办法]



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)

热点排行