存过中查询有个
create_date 字段
传入参数里有
begin_date 和 enddate两个字段,都是非必输。
现在要做一个查询,要求筛选出create_date在begin_date和 end_date 之间的记录。求教应该怎么写?
我现在想到的方法是 用if 分所有的场景去处理。想问有没有简单的办法
就类似 where name like coalesce(in_name,'%%')这种直接可以处理非必输的方法
oracle 存过中处理非必输日期
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
Yao_Fly 2019-03-25 20:35关注declare
……
vsql varchar2(3000);
……
begin
……
vsql := 'select * from table1 where 1 = 1'--你自己的SQL--拼接SQL
if begindate is not null then
vsql := vsql || ' and createdate >= begindate';
end if ;if enddate is not null then
vsql := vsql || ' and createdate <= enddate';
end if ;--执行拼接的SQL
execute immediate vsql;……
end;解决 无用评论 打赏 举报