i have a table: tbl_test
this table has 2 columns name: age, weight
this table has 2 row inserted:
age weight
3 5
4 6
now i want to print this:
age weight
0 null
1 null
2 null
3 5
4 6
5 null
6 null
7 null
..
..
..
60 null
and so on....
how can we do this, please suggest.