DEVFYI - Developer Resource - FYI

Sort the Rows:

PL/SQL Interview Questions and Answers


(Continued from previous question...)

Sort the Rows:

Sort the Rows:
SELECT column1, column2, ... FROM table_name ORDER BY columnX, columnY, ..
SELECT column1, column2, ... FROM table_name ORDER BY columnX DESC
SELECT column1, column2, ... FROM table_name ORDER BY columnX DESC, columnY ASC

(Continued on next question...)

Other Interview Questions