服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - 搜索sql语句

搜索sql语句

2019-10-26 18:42mssql教程网 Sql Server

搜索sql语句

  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  

延伸 · 阅读

精彩推荐