[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
SQLOrderBy
You can make the sort descending by adding DESC:
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
SQLOrderBy
(SQL) ORDER BY
You can sort data by using ORDER BY.-- Select the oldest women from the database SELECT * FROM DATABASE WHERE GENDER = 'FEMALE' ORDER BY AGE
You can make the sort descending by adding DESC:
-- Select the youngest women from the database SELECT * FROM DATABASE WHERE GENDER = 'FEMALE' ORDER BY AGE DESC
Code links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
