21 lines
1.1 KiB
MySQL
21 lines
1.1 KiB
MySQL
|
-- SORT BY { expression [ sort_direction | nulls_sort_order ] [ , ... ] }
|
||
|
|
||
|
-- Sort rows by `name` within each partition in ascending manner
|
||
|
SELECT /*+ REPARTITION(zip_code) */ name, age, zip_code FROM person SORT BY name;
|
||
|
|
||
|
-- Sort rows within each partition using column position.
|
||
|
SELECT /*+ REPARTITION(zip_code) */ name, age, zip_code FROM person SORT BY 1;
|
||
|
|
||
|
-- Sort rows within partition in ascending manner keeping null values to be last.
|
||
|
SELECT /*+ REPARTITION(zip_code) */ age, name, zip_code FROM person SORT BY age NULLS LAST;
|
||
|
|
||
|
-- Sort rows by age within each partition in descending manner, which defaults to NULL LAST.
|
||
|
SELECT /*+ REPARTITION(zip_code) */ age, name, zip_code FROM person SORT BY age DESC;
|
||
|
|
||
|
-- Sort rows by age within each partition in descending manner keeping null values to be first.
|
||
|
SELECT /*+ REPARTITION(zip_code) */ age, name, zip_code FROM person SORT BY age DESC NULLS FIRST;
|
||
|
|
||
|
-- Sort rows within each partition based on more than one column with each column having
|
||
|
-- different sort direction.
|
||
|
SELECT /*+ REPARTITION(zip_code) */ name, age, zip_code FROM person SORT BY name ASC, age DESC;
|