Is it possible to sort the data inside of an oracle table? Like ascending/descending via a certain column, alphabetically. Oracle 10g express.
Is it possible to sort the data inside of an oracle table? Like ascending/descending
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could try
This will sort the results by
some_columnand place them in ascending order. Usedescinstead ofascif you want descending order. Or did you mean to have the ordering in the physical storage itself?I believe it’s possible to specify the ordering/sorting of an indexed column in storage. It’s probably closest to what you want. I don’t usually use this index sort feature, but for more info see: http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_5010.htm#i2062718