45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:怎么样能够实现SQL多条件查询功能?

怎么样能够实现SQL多条件查询功能?

2016-12-27 20:17:19 来源:www.45fan.com 【

怎么样能够实现SQL多条件查询功能?

SQL 多条件查询

以后我们做多条件查询,一种是排列结合,另一种是动态拼接SQL

如:我们要有两个条件,一个日期@addDate,一个是@name

第一种写法是

if (@addDate is not null) and (@name <> '')
select * from table where addDate = @addDate and name = @name
else if (@addDate is not null) and (@name ='')
select * from table where addDate = @addDate 
else if(@addDate is null) and (@name <> '')
select * from table where and name = @name
else if(@addDate is null) and (@name = '')
select * from table 

第二种就是动态组成SQL,通过exec来执行,我就不写,

昨天我想到一种办法

select * from table where (addDate = @addDate or @addDate is null) and (name = @name or @name = '')

结果一调试,成功,

一点想法,有更好方法的,请指教+

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


本文地址:http://www.45fan.com/a/question/86223.html
Tags: sql 查询 条件
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部