Choosing Specific Columns

To select specific columns in a table, use this syntax:

SELECT column_name [, column_name...]
FROM table_name

Each column name must be separated from the following column name by a comma.