搜索sql语句

时间:2022-05-07 01:05:27
  1. CREATE procedure dbo.select_a  
  2.     @b varchar(50),  
  3.     @c varchar(50),  
  4.     @d varchar(50),  
  5.     @e varchar(50)  
  6. as  
  7. declare @strsql varchar(5000) ;  
  8. set @strsql='select * from a where 1=1  ';  
  9. if @b <>''   
  10. set @strsql= @strsql+' and b="'+@b +'"';  
  11. if @c <>''   
  12. set @strsql= @strsql+' and c="'+@c +'"';  
  13. if @d <>''   
  14. set @strsql= @strsql+' and d="'+@d  +'"';  
  15. if @e <>''   
  16. set @strsql= @strsql+' and  e="'+@e +'"';  
  17.  
  18. exec (@strsql)  
  19. GO