Wednesday, October 29, 2008

Oracle PL/SQL | Sorting with NULL

The query to sort nulls in a particular column

select <Column Names> from <Table>
order by <Column List> {asc/desc} {nulls (first/last)};