SELECT

SQL SELECT #

Select it all #

What madness!

SELECT * FROM <table>;

Select selectively #

SELECT <column>, <column>
FROM <table>;

AS #

AS renames a selection

SELECT <column> AS <new column name>
FROM <table>;

DISTINCT #

Find the distinct values

SELECT DISTINCT <column>
FROM <table>;

WHERE #

Set some conditions for what gets selected

SELECT <column>
FROM <table>
WHERE <some condition>;