I have table:
id (int) | floor (text)
-----------------------
1 | 1
2 | 10
3 | 7
4 | Ground floor
I want the result from my query to sort the data on the text column floor
. Is possible to get result like that?
id (int) | floor (text)
-----------------------
4 | Ground floor
1 | 1
3 | 7
2 | 10