欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

搜索sql语句

程序员文章站 2024-01-15 13:39:16
...

搜索sql语句

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语句