Change ORDER BY to get more consistant results.

This commit is contained in:
Thomas G. Lockhart 1997-09-20 16:31:44 +00:00
parent 354a18fcb2
commit 68cd097e89
1 changed files with 1 additions and 1 deletions

View File

@ -91,5 +91,5 @@ SELECT p.name, p.age FROM person* p;
-- awk 'BEGIN{FS=" ";}{if(NF!=1){print $4,$5;}else{print;}}' - stud_emp.data |
-- sort +1nr -2
--
SELECT p.name, p.age FROM person* p ORDER BY age using >;
SELECT p.name, p.age FROM person* p ORDER BY age using >, name;