I am a having a table with column Symbol and Weight(only two Column) . I need to sort table according to weight of the symbols, that i can do by
SELECT symbol, weight FROM symbols ORDER BY weight DESC
but this wont change my table, but it will give me a sorted output(temporary).
I want to sort table permanently. How can i do that?
See Question&Answers more detail:os