My SQL query has "connect by regexp_substr". How do I convert it to PostgreSQL 10 query ?
I have tried this in Ubuntu and toad...
select regexp_substr('1,2,4','[^,]+', 1, level) from dual
connect by regexp_substr('1,2,4', '[^,]+', 1, level) is not null;
How to do I get convert above query to PostgreSQL version 10?