From a2184019804e7566e9bda83aaf85b3510e74e62b Mon Sep 17 00:00:00 2001 From: Mohan Pawar Date: Sat, 8 Oct 2016 17:10:28 +0000 Subject: [PATCH] Asecending to Descending with brief explanation --- .guides/content/SQL-examples-10c4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.guides/content/SQL-examples-10c4.md b/.guides/content/SQL-examples-10c4.md index 914a93f..b362278 100644 --- a/.guides/content/SQL-examples-10c4.md +++ b/.guides/content/SQL-examples-10c4.md @@ -1,6 +1,6 @@ For the next set of examples, try doing a `source` on each of them by copying and pasting the code in the `sql-example.sql` file we created for you. -Select the _email_ column of the `basic_info` table and sort the results by email in _ascending_ order (remember that the `people` database must be in `USE`): +Select the _email_ column of the `basic_info` table and sort the results by email in _descending_ order (remember that the `people` database must be in `USE` and ORDER BY keyword sorts the records in ascending order by default except few exception cases): ``` SELECT email FROM basic_info