I have a table with two columns Column1 and column2
Like such
create table testTable (column1 number(15), column2 number(15));
insert into testTable values (1,5);
I need to find the numbers between column 1 and column 2 including the column 1's number and column's 2 number.
Can someone point me in the right direction.
so my answer set should be
1,2,3,4,5