The following SQL statement selects all fields from "Customers" where country is NOT "Germany":
SELECT * FROM Customers
WHERE NOT Country='Germany';
WHERE NOT Country='Germany';
Practice Excercise Practice now
The following SQL statement selects all fields from "Customers" where country is NOT "Germany":
Practice Excercise Practice now