Skip to content

Follow the connections : recursive query

i have two columns of numbers. the goal is starting from a number f.e. 55, to extract all ‘connected’ numbers (starting with any of those numbers, should yield the same result) in this case all numbers shown here : 55,56,35,69,60,22,47,2,26 I use the following query : but I get back only those bac…

How to cross join two tables in sql

So I need to cross join 2 tables but I cannot find a way to do so without receiving the error ORA-01427: single-row subquery returns more than one row ORA-06512: at “SYS.DBMS_SQL”, line …