SELECT
Instruction to select a column.
SELECT data
FROM
Keyword that selects a file data
FROM data file
;
semicolon is used for finishing a query
SELECT data
FROM column;
,
Used to separate column
SELECT name, id
*
Symbol used for selecting all column to make it easier.
SELECT *
DISTINCT
It removes all the duplicates is a row of a column.
SELECT DISTINCT data