VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > SQL教程 >
  • 搜索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 

相关教程