The select-item can be one of the following:
- A column name from one of the FROM tables, qualified by the table if necessary.
- The star character (*) which selects all columns of a table(s).
- An expression which can be constant ('has a product called'),
an arithmetic expression involving literals and columns (sales-quota),
a function of a column value(MONTH(hire_date)),
summary functions (AVG, MAX, MIN, SUM, COUNT), ...
Example:
SELECT People.first_name, email, (dogs-cats) AS more_dogs