Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
command is used with WHERE to only include rows where a condition is not true. The following SQL statement selects all fields from "Customers" where country is NOT "Germany":
SELECT * FROM CustomersNOT Country='Germany';❮ SQL Keywords