-text
-numeric
-date
SELECT * FROM (table_name);
SELECT (example-info) FROM (table_name);
SELECT (example-info), (example-info) FROM (table_name);
SELECT (example_info) AS ("new name") FROM (table_name);
SELECT (example_info) FROM (example_table) WHERE (example_info) = (parameter);
Operators: =, !=, <, <=, >, >=
Multiple Condtions: AND & OR
SELECT (example_info) FROM (table) WHERE (example_info) IN ("example", "example", "example");
SELECT (example_info) FROM (table) WHERE (example_info) BETWEEN ("example") AND ("example");
SELECT (example_info) FROM (table) WHERE (example_info) LIKE ("example");
Use % for a partial match. Example: ("%ample");
SELECT (example_info) FROM (table) WHERE (example_info) IS NULL;