This document discusses how to restrict and sort data retrieved by SQL queries. It describes how to limit rows using the WHERE clause with various comparison operators like equal to, greater than, between, in, like, and is null. Logical operators like AND, OR and NOT can be used with WHERE. Rows can be sorted using the ORDER BY clause, specifying columns and expressions to sort on in ascending or descending order. Multiple columns can be used in the ORDER BY to further refine the sorting.