SQL Basics
Wildcards
Joining Tables
Aggregates & Calculations
Grouping
100

This clause specifies the fields you want to display.

What is SELECT?

100

This operator is used with wildcards to find patterns.

What is LIKE?

100

This type of key links a table to a primary key in another table.

What is a foreign key?

100

A value created during a query rather than stored in the database.

What is a computed/calculated value?

100

This clause groups rows with identical values into summary rows.

What is GROUP BY?

200

This clause tells SQL where the data comes from.

What is FROM?

200

This wildcard represents zero, one, or many characters.

What is *?

200

The process of linking multiple tables together.

What is a join?

200

This keyword gives a column a temporary name.

What is AS (alias)?

200

The rule stating that all non-aggregate fields must appear here.

What is the GROUP BY clause?

300

This clause filters records based on conditions.

What is WHERE?

300

This wildcard represents exactly one character.

What is ?

300

The number of joins needed when using 3 tables.

What is 2 joins?

300

This function returns the number of records.

What is COUNT?

300

The number of results returned by an aggregate function without grouping.

What is one result?

400

SQL is described as this type of language—you say what you want, not how to get it.

What is a declarative language?

400

The SQL condition to find all surnames ending in “son”.

What is WHERE Surname LIKE '*son'?

400

The problem caused when you forget to link tables correctly.

What is a Cartesian product/Referential Integrity?

400

This function calculates the mean value.

What is AVG?

400

The correct order: SELECT → FROM → WHERE → ___ → ___.

What is GROUP BY→ORDER BY?

M
e
n
u