The following SQL statement selects all the customers from the country "Mexico", in the "Customers" table:
Example
SELECT * FROM CustomersWHERE Country='Mexico';
Try...
The following SQL statement selects only the distinct values from the "City" columns from the "Customers" table:
Example
SELECT DISTINCT City FROM Customers;
Try...