Write a statement that returns all the fields and records except Germany. Sort by City. You should have retrieved 80 records.
A) SELECT * FROM Table WHERE Country <> 'Germany' ORDER BY City;
B) SELECT * FROM Table WHERE NOT Country = 'Germany' ORDER BY City;
C) SELECT * FROM Table WHERE Country != 'Germany' ORDER BY City;
D) SELECT * FROM Table WHERE NOT Country LIKE 'Germany' ORDER BY City;