I have a table1 which has column "Id". When I write query "select * from table1" it is giving me correct result like below
Id
4
5
2
3
1
But I want the result like -
Id
1
2
3
4
5
I know I can achieve this by using "order by Id" but I want this result even if I use "select * from table1".