with t as (
            select '111,222,333' col from dual
      union all
      select '444,555,666' col from dual
        ) 
        select regexp_substr(col, '[^,]+', 1, level) AS SUBJECT_IDS
    from t
     connect by level <= regexp_count(col, '[^,]+')
     and col = prior col
     and prior dbms_random.value > 0

 

相关文章:

  • 2021-11-13
  • 2021-10-03
  • 2022-12-23
  • 2021-06-01
  • 2021-12-23
  • 2022-12-23
  • 2021-07-18
  • 2021-10-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案