ORACLE in (字符串,字符串,字符串)

本文介绍了一种使用SQL进行复杂条件查询的方法,特别是如何处理多个特定值的IN子句问题。通过运用REGEXP_SUBSTR函数和CONNECT BY语法,可以将传入的字符串参数转化为有效的SQL IN子句,实现对特定字段值的有效过滤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

因为传进来的参数是 字符串,字符串,字符串,要实现in(字符串,字符串,字符串)
select * from htl_price p where p.hotel_id = 30073328
        and p.able_sale_date between to_date('2009-03-27','YYYY-MM-DD') and to_date('2009-03-28','YYYY-MM-DD')
and p.pay_method = 'pre_pay'
        and to_char(p.child_room_type_id) in (33153,33154);

--目标是这样

 


select * from htl_price p where p.hotel_id = 30073328
        and p.able_sale_date between to_date('2009-03-27','YYYY-MM-DD') and to_date('2009-03-28','YYYY-MM-DD')
and p.pay_method = 'pre_pay'
        and to_char(p.child_room_type_id) in concat(concat('(','33153,33154'),')');

--此法不行

 


select * from htl_price p where p.hotel_id = 30073328
        and p.able_sale_date between to_date('2009-03-27','YYYY-MM-DD') and to_date('2009-03-28','YYYY-MM-DD')
and p.pay_method = 'pre_pay'
        and to_char(p.child_room_type_id) in
(select *
          from (select regexp_substr('33153,33154', '[^,]+', 1, rownum) n
                  from dual
                connect by rownum < 50)
         where n is not null);

--这样就可以

connect by 把每次执行只返回一个结果组成一个结果集。

regexp_substr('33153,33154', '[^,]+', 1, rownum):参数1是从最头那个字母开始,rownum是第几次出现。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值