The following SQL statement selects the "CustomerName", "City", and "Country" columns from the "Customers" table:

SELECT CustomerName, City, Country FROM Customers;

The following SQL statement selects ALL the columns from the "Customers" table:
SELECT * FROM Customers;



Practice Excercise Practice now