The following SQL statement selects all customers from the "Customers" table, sorted by the "Country" column:
Example
SELECT * FROM CustomersORDER BY Country;
Try...
The following SQL statement selects all customers from the city "Berlin" OR
"München", in the "Customers" table:
Example
SELECT * FROM CustomersWHERE City='Berlin'OR City='München';
Try...
The following SQL statement selects all customers from the country "Germany" AND the city "Berlin", in the "Customers" table:
Example
SELECT * FROM CustomersWHERE Country='Germany'AND City='Berlin';
Try...