SQL select
SQL (Structured query language) is the language for searching a database for information. The search command has the format:
SELECT can either be followed by * which means all fields, or you can specify just the fields you want to see
FROM is where you specify the table/s the data is stored in
WHERE lets you specify criteria the data should match to be selected
Boolean operators
The Boolean operators AND, OR and NOT can be used to make more complex searches.