Order decending
/*
mysql> select * from employee;
+----+-----------+----------+----------------------------+------+---------------+--------+-------+---------------------+
| id | firstname | lastname | title | age | yearofservice| salary | perks | email |
+----+-----------+----------+----------------------------+------+---------------+--------+-------+---------------------+
| 1 | John | Chen | Senior Programmer | 31 | 3| 120000 | 25000 | j@hotmail.com |
| 2 | Jan | Pillai | Senior Programmer | 32 | 4| 110000 | 20000 | g@yahoo.com |
| 3 | Ane | Pandit | Web Designer | 24 | 3| 90000 | 15000 | a@gmail.com |
| 4 | Mary | Anchor | Web Designer | 27 | 2| 85000 | 15000 | m@mail.com |
| 5 | Fred | King | Programmer | 32 | 3| 75000 | 15000 | f@net.com |
| 6 | John | Mac | Programmer | 32 | 4| 80000 | 16000 | j@hotmail.com |
| 7 | Arthur | Sam | Programmer | 28 | 2| 75000 | 14000 | e@yahoo.com |
| 8 | Alok | Nanda | Programmer | 32 | 3| 70000 | 10000 | a@yahoo.com |
| 9 | Susan | Ra | Multimedia Programmer | 32 | 4| 90000 | 15000 | h@gmail.com |
| 10 | Paul | Simon | Multimedia Programmer | 23 | 1| 85000 | 12000 | ps@gmail.com |
| 11 | Edward | Parhar | Multimedia Programmer | 30 | 2| 75000 | 15000 | a@hotmail.com |
| 12 | Kim | Hunter | Senior Web Designer | 32 | 4| 110000 | 20000 | kim@coolmail.com |
| 13 | Roger | Lewis | System Administrator | 32 | 3| 100000 | 13000 | roger@mail.com |
| 14 | Danny | Gibson | System Administrator | 31 | 2| 90000 | 12000 | danny@hotmail.com |
| 15 | Mike | Harper | Senior Marketing Executive | 36 | 1| 120000 | 28000 | m@gmail.com |
| 16 | Mary | Sunday | Marketing Executive | 31 | 5| 90000 | 25000 | monica@bigmail.com |
| 17 | Jack | Sim | Marketing Executive | 27 | 1| 70000 | 18000 | hal@gmail.com |
| 18 | Joe | Irvine | Marketing Executive | 27 | 1| 72000 | 18000 | joseph@hotmail.com |
| 19 | Henry | Ali | Customer Service Manager | 32 | 3| 70000 | 9000 | shahida@hotmail.com |
| 20 | Peter | Champion | Finance Manager | 32 | 2| 120000 | 25000 | peter@yahoo.com |
+----+-----------+----------+----------------------------+------+---------------+--------+-------+---------------------+
20 rows in set (0.02 sec)
mysql> select firstname, lastName, age
-> from employee
-> order by age DESC limit 1;
+-----------+----------+------+
| firstname | lastName | age |
+-----------+----------+------+
| Mike | Harper | 36 |
+-----------+----------+------+
1 row in set (0.00 sec)
*/
Drop table employee;
CREATE TABLE employee (
id int unsigned not null auto_increment primary key,
firstname varchar(20),
lastname varchar(20),
title varchar(30),
age int,
yearofservice int,
salary int,
perks int,
email varchar(60)
);
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("John", "Chen", "Senior Programmer", 31, 3, 120000, 25000, "j@hotmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Jan", "Pillai", "Senior Programmer", 32, 4, 110000, 20000, "g@yahoo.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Ane", "Pandit", "Web Designer", 24, 3, 90000, 15000, "a@gmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Mary", "Anchor", "Web Designer", 27, 2, 85000, 15000, "m@mail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Fred", "King", "Programmer", 32, 3, 75000, 15000, "f@net.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("John", "Mac", "Programmer", 32, 4, 80000, 16000, "j@hotmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Arthur", "Sam", "Programmer", 28, 2, 75000, 14000, "e@yahoo.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Alok", "Nanda", "Programmer", 32, 3, 70000, 10000, "a@yahoo.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Susan", "Ra", "Multimedia Programmer", 32, 4, 90000, 15000, "h@gmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Paul", "Simon", "Multimedia Programmer", 23, 1, 85000, 12000, "ps@gmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Edward", "Parhar", "Multimedia Programmer", 30, 2, 75000, 15000, "a@hotmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Kim", "Hunter", "Senior Web Designer", 32, 4, 110000, 20000, "kim@coolmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Roger", "Lewis", "System Administrator", 32, 3, 100000, 13000, "roger@mail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Danny", "Gibson", "System Administrator", 31, 2, 90000, 12000, "danny@hotmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Mike", "Harper", "Senior Marketing Executive", 36, 1, 120000, 28000, "m@gmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Mary", "Sunday", "Marketing Executive", 31, 5, 90000, 25000, "monica@bigmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Jack", "Sim", "Marketing Executive", 27, 1, 70000, 18000, "hal@gmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Joe", "Irvine", "Marketing Executive", 27, 1, 72000, 18000, "joseph@hotmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Henry", "Ali", "Customer Service Manager", 32, 3, 70000, 9000, "shahida@hotmail.com");
INSERT INTO employee (firstname, lastName, title, age, yearofservice, salary, perks, email) values ("Peter", "Champion", "Finance Manager", 32, 2, 120000, 25000, "peter@yahoo.com");
select * from employee;
select firstname, lastName, age
from employee
order by age DESC limit 1;
Related examples in the same category
1. | Order result wiht ORDER | | |
2. | Use ORDER BY to list | | |
3. | Use two ORDER BY fields | | |
4. | Sorting Rows | | |
5. | Default sort order is ascending | | |
6. | To sort in reverse (descending) order | | |
7. | Sort on multiple columns | | |
8. | Sort columns in different directions | | |
9. | Another decendingly | | |
10. | Order BY and Limit | | |
11. | Order row in select clause | | |
12. | Order two columns with different orders | | |
13. | Narrow down data with condition and order it | | |
14. | Simple ORDER by | | |
15. | Sorting Data | | |
16. | Use order by to sort the result | | |
17. | Indicate of ascend | | |
18. | Order by index | | |
19. | ORDER BY RAND | | |
20. | Search string with order | | |
21. | The lack of case sensitivity also applies to relative ordering comparisons: | | |
22. | Refer to the alias in the ORDER BY clause | | |
23. | Columns specified by positions or by aliases can be sorted in either ascending or descending order | | |
24. | Putting the expression directly in the ORDER BY clause: | | |
25. | To achieve the desired output order, display the string, but use the actual numeric size for sorting | | |
26. | Display the composite names, but refer to the constituent values in the ORDER BY clause: | | |
27. | To sort those records in calendar order, use the birthmonth and birthday columns. | | |
28. | To sort by product category, extract the category value and use it in the ORDER BY clause | | |
29. | To use the substrings for sorting, use the appropriate expressions in the ORDER BY clause. | | |
30. | Sorting Hostnames in Domain Order | | |
31. | Sorting Dotted-Quad IP Values in Numeric Order | | |
32. | Floating Specific Values to the Head or Tail of the Sort Order | | |
33. | Sorting in User-Defined Orders | | |
34. | Sort the column by the order in which colors occur in the rainbow. | | |
35. | To make the lexical ordering correspond to the numeric ordering, | | |
36. | Controlling Summary Display Order | | |
37. | Sort drivers according to who drove the most days or miles, add the appropriate ORDER BY clause | | |
38. | Order by sum result | | |
39. | To sort the result set as a whole, add an ORDER BY clause after the final SELECT statement. | | |
40. | Enclose a given SELECT (including its ORDER BY clause) within parentheses | | |
41. | The expressions display state names in lexical order within each row | | |
42. | Delete from the Orders table any order for the book title Where I'm Calling From. | | |
43. | SELECT statement includes an ORDER BY clause that sorts the result set according to two columns | | |
44. | Determine how many books have been ordered for authors who have more than one book listed in the Books table. | | |
45. | The Order in Which MySQL Processes Conditions | | |
46. | Return the third, fourth, and fifth records sorted in descending order on the commission field? | | |
47. | Explicit evaluation order | | |
48. | Display order number, quantity, item name, vendor and total order value of order number 2805 | | |
49. | Display all products - including those with no orders | | |
50. | Get the order number and number of items ordered where the color is not Pink and the number of items ordered i | | |
51. | Get players whose combination of name and initials comes before player 6 in alphabetical order. | | |
52. | Order by char type | | |
53. | order by sub string | | |
54. | Order by calculated value | | |
55. | Order by alias name | | |
56. | Order by one column descending and another one ascending | | |
57. | Order then choose the first rows | | |
58. | Refer to Sort Columns | | |
59. | Sorting Expression Results | | |
60. | Sort the results using the underlying column values rather than the displayed composite values | | |
61. | Convert the output column and sort that-but doing so affects the displayed values, possibly in an undesirable | | |
62. | To sort by country code, use the rightmost two characters of the id values | | |
63. | Sorting hostname values correctly in right-to-left fashion: | | |
64. | Sort by position | | |
65. | Sort direction | | |
66. | display all data in "hers" and "his" sorted by id | | |
67. | Sorting Subsets of a Table | | |
68. | Displaying One Set of Values While Sorting by Another | | |