We have following table with columns: CategoryId | CategoryName with CategoryId as primary-key.
We have following data:
0 Other
1 Bumper
2 Door
3 Roof
4 Fender
I use select * from these table and i get rows in the above sequence only i.e. 0 first and 4 at last.
Is there any way I can get 0 at last? i.e. 1,2,3,4,0?