码迷,mamicode.com
首页 > 数据库 > 详细

sql条件为空查询全部,不为空按条件查询以及多条件筛选查询。

时间:2015-06-19 14:56:14      阅读:790      评论:0      收藏:0      [点我收藏+]

标签:

procedure queryLackLonOrLatTdCell(i_region_name varchar2, i_state varchar2) is
begin
  select region_name, state
    from gc3_td_site_history
   where 1 = 1
     and region_name =
         decode(i_region_name, null, region_name, i_region_name)
     and instr(decode(i_state, null, state, i_state), state) > 0;
end;

如果i_region_name为null,则查询出所有的region_name;否则按i_region_name查询。

如果i_state为null,则查询所有的state;如果i_state为“state1,state2”,相当于state in(state1,state2);

sql条件为空查询全部,不为空按条件查询以及多条件筛选查询。

标签:

原文地址:http://www.cnblogs.com/DurantSimpson/p/4588426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!