SQL's distinct `DISTINCT` keyword` is an essential tool for getting only the different records from a query set. Imagine you have a table of customers, and you want to know how many various cities are listed. Using `SELECT city FROM customers;` would possibly provide a enumeration with repeated city titles. However, `SELECT DISTINCT city FROM custo