To select specific Colum (DATA) from table use this syntex.
SELECT Colum1, Colum2 FROM Customers;To understand better Think as Colum1, Colum2 Is a Country Colum and City Colum.
Is used to select all colums (DATA) form customers table. LIKE ->
SELECT * FROM CustomersIn many cases we have a similar data like in Country colum we have 2 same country names and we want only one names then we'll use DISTINCT. LIKE ->
SELECT DISTINCT Colum FROM Customers.The following SQL statement counts and returns the number of different (distinct) countries in the "Customers" table:
SELECT COUNT(DISTINCT Country) FROM Customers;