CREATE procedure dbo.select_a
    @b varchar(50),
    @c varchar(50),
    @d varchar(50),
    @e varchar(50)
as
declare @strsql varchar(5000) ;
set @strsql='select * from a where 1=1  ';
if @b <>'' 
set @strsql= @strsql+' and b="'+@b +'"';
if @c <>'' 
set @strsql= @strsql+' and c="'+@c +'"';
if @d <>'' 
set @strsql= @strsql+' and d="'+@d  +'"';
if @e <>'' 
set @strsql= @strsql+' and  e="'+@e +'"';

exec (@strsql)
GO


标签:
搜索sql语句

免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com

评论“搜索sql语句”

暂无“搜索sql语句”评论...