搜索sql语句
(编辑:jimmy 日期: 2024/11/16 浏览:3 次 )
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
@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语言查询基础:连接查询 联合查询 代码