1. 程式人生 > >知識積累,,,,oracle查詢帶 , 的字串,將逗號分隔開查詢

知識積累,,,,oracle查詢帶 , 的字串,將逗號分隔開查詢

select * from t_article  where article_channel = '智庫動態' and tagname = '4G+,人工智慧';

以上是未按","分開時的查詢

SELECT
    article_id,
    article_channel,
    article_content,
    article_title,
    REGEXP_SUBSTR (tagname, '[^,]+', 1, lv) tagname
FROM
    t_article,
    (
        SELECT
            LEVEL lv
        FROM
            dual CONNECT BY LEVEL < 4
    ) b
WHERE
    b.lv <= REGEXP_COUNT (t_article.tagname, '\,') + 1  and article_channel = '智庫動態' and tagname = '4G+,人工智慧'
ORDER BY
    article_id;

以上是按","分開後的查詢