SQL's distinct `DISTINCT` phrase` is an essential tool for retrieving only the individual records from a query result. Imagine you have a table of customers, and you desire to know how many several cities are listed. Using `SELECT city FROM customers;` would potentially return a enumeration with repeated city labels. However, `SELECT DISTINCT city