61.
The keyword LIKE can be used in a WHERE clause to refer to a range of values.

62.
The SQL statement: SELECT Name, COUNT(*) FROM NAME_TABLE; counts the number of name rows and displays this total in a table with a single row and a single column.

63.
The SQL keyword GROUP BY instructs the DBMS to group together those rows that have the same value in a column.

64.
The wildcard asterisk (*) is the SQL-92 standard for indicating "any sequence of characters."

65.
Microsoft Access has become ubiquitous, and being able to program in Access is a critical skill.

66.
SQL provides five built-in functions: COUNT, SUM, AVG, MAX, MIN.

67.
The keyword BETWEEN can be used in a WHERE clause to refer to a range of values.

68.
To establish a range of values, < and > can be used.

69.
If you are going to use a combination of three or more AND and OR conditions, it is often easier to use the NOT and NOT IN operators.