Book Contents

Book Index

Next Topic

Home

ORDER BY Clause

Sorts a query result set on one or more columns.

Syntax

ORDER BY expression [ ASC | DESC ] [, ...]

Semantics

expression

can be:

  • the name or ordinal number of a SELECT list item
  • an arbitrary expression formed from columns that do not appear in the SELECT list
  • a CASE expression

Notes