I want to use order by
command on a table to get timestamps in order. But it does not give the result I expect. For example;
select * from my_table order by tstmp desc;
I gives the result something like;
my_table.tstmp
--------------
100
98
45
150
145
What is the reason of this and how can I fix this?
Thank you.