if exists(select * from tb where @cSQL) 
print '存在'
else
print '不存在'上面的变量 @cSQL 中的内容是是通过复杂的条件动态生的总条件字符串。
上面的例子只是想说明我要的结果,即条件是动态的,请问如何实现??

解决方案 »

  1.   

    那就尽量只传参数进来,参数为空的话传NULL进来。你条件先写好了这样
    if exists(select * from tb where col1=@col1 and col2=@col2 ) 
    print '存在'
    else
    print '不存在'
      

  2.   

    declare @csql varchar(1000)
    set @csql='科目=''语文'''
    exec (
    'if exists(select * from tb where '+@cSQL+')  
    print ''存在''
    else
    print ''不存在''')
      

  3.   

    select * from tb where @cSQL
    这句错
      

  4.   

    你这样用是错的,需要使用动态SQL.exec('if exists(select * from tb where ' + @cSQL) + ' 
    print ''存在''
    else
    print ''不存在''')
      

  5.   


    我只是举例子,所用用了 print 输出语句,实际上 exists()判断的条件成立与否,在print行这里 都是有大量语句的。还有变量赋值。下面的语句又该如何实现呢??
    declare @cx char(10)
    if exists(select * from tb where col1=@col1 and col2=@col2 ) 
    set @cx = '1'
    else
    set @cx = '0'if @cx = 1
    begin
    ....大量sql执行语句
    end
    else
    begin
    ....大量sql执行语句
    end帮忙帮到底,先道声谢谢!!
      

  6.   


    我只是举例子,所用用了 print 输出语句,实际上 exists()判断的条件成立与否,在print行这里 都是有大量语句的。还有变量赋值。
    下面的语句又该如何实现呢??declare @cx char(10)
    if exists(select * from tb where @cSQL)  
    set @cx = '1'
    else
    set @cx = '0'
    if @cx = 1
    begin
    ....大量sql执行语句
    end
    else
    begin
    ....大量sql执行语句
    end
    帮忙帮到底,先道声谢谢!!
      

  7.   

    declare @csql Nvarchar(1000),@cx int
    set @csql=N'科目=''语文'''
    set @csql=
    N'if exists(select * from tb where '+@cSQL+')  
     set @cx=1
    else
     set @cx=0'exec sp_executesql @csql,N'@cx int output',@cx output;if @cx = 1
    begin
    ....大量sql执行语句
    end
    else
    begin
    ....大量sql执行语句
    end
      

  8.   

    你这样用动态SQL很麻烦,需要大量的组合.
    参考下面的说明,自己去组合.
    --动态sql语句基本语法
     
    1 :普通SQL语句可以用Exec执行 eg: Select * from tableName 
    Exec('select * from tableName') 
    Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N 2:字段名,表名,数据库名之类作为变量时,必须用动态SQL eg: 
    declare @fname varchar(20) 
    set @fname = 'FiledName' 
    Select @fname from tableName -- 错误,不会提示错误,但结果为固定值FiledName,并非所要。 
    Exec('select ' + @fname + ' from tableName') -- 请注意 加号前后的 单引号的边上加空格 当然将字符串改成变量的形式也可 
    declare @fname varchar(20) 
    set @fname = 'FiledName' --设置字段名 declare @s varchar(1000) 
    set @s = 'select ' + @fname + ' from tableName' 
    Exec(@s) -- 成功 
    exec sp_executesql @s -- 此句会报错 declare @s Nvarchar(1000) -- 注意此处改为nvarchar(1000) 
    set @s = 'select ' + @fname + ' from tableName' 
    Exec(@s) -- 成功 
    exec sp_executesql @s -- 此句正确 3. 输出参数 
    declare @num int, 
    @sqls nvarchar(4000) 
    set @sqls='select count(*) from tableName' 
    exec(@sqls) 
    --如何将exec执行结果放入变量中? declare @num int, 
    @sqls nvarchar(4000) 
    set @sqls='select @a=count(*) from tableName ' 
    exec sp_executesql @sqls,N'@a int output',@num output 
    select @num 
      

  9.   

    我不知道你设置@cx 的值有什么用?如果只是为了根据@cx的值来判断执行那个语句可用一下实现方法
    declare @cx char(10)
    if exists(select * from tb where @cSQL)   
    begin
    ....大量sql执行语句
    end
    else
    begin
    ....大量sql执行语句
    end
      

  10.   

    josy  严重感谢!!祝您 : 安康、快乐、幸福美满!!!