I have the following code for a single column table that has values from 0 to 9:
create table number(
value int
)
truncate table number
insert into number values(0);
insert into number values(1);
insert into number values(2);
insert into number values(3);
insert into number values(4);
insert into number values(5);
insert into number values(6);
insert into number values(7);
insert into number values(8);
insert into number values(9);
What I want is a query which should join the numbers without using concat (or any builtin function) function and gives me the following output in a tabular form:
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.
.
.
.
.
999
Really having a hard time doing it for the past 5 days. Need sincere help.

