Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .guides/content/SQL-examples-10c4.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down