Operators
Basic Databases
Queries
Miscellaneous
Relational
100

=

What is equal to?

100

Two-dimensional structure with rows and columns.

What is a table

100

Specifies how data is sorted in a result set.

What is sort order?

100

ASC or DESC

What are sort orders?

100

This join selects all rows from both participating tables as long as there is a match between the columns.

Inner Join

200

>

<

What is greater than and 

What is less than?

200

This uniquely identifies a row in a table.

What is a primary key?

200

Specifies the table that data is selected from.

What is the FROM clause?

200

The default direction for ORDER BY

What is ASC?

200

This join returns all records from the left table (table1), and the matching records from the right table (table2).

What is a Left Join?

300

>=

<=

What is greater than or equal and 

What is less than or equal?

300

The data-type in a field is text.

What is string?

300

 SELECT * FROM payroll;

What selects everything from the payroll table?

300

* % _

What are wildcard operators?
300

This join returns all the rows of the table on the right side of the join and matching rows for the table on the left side of join.

What is a Right Join?

400

And

OR

What can you use to combine conditions?

400

A type of database that connects tables to each other.

What is a relational database?

400

SELECT DISTINCT

What statement eliminates duplicates?

400

Returns counts, sums, averages, minimums and maximums per group.

What is Group By?

400

This join returns all (matched or unmatched) rows from the tables on both sides of the join clause.

What is a Full Outer Join?

500

!= or <>

What is not equal?

500

Structured Query Language

What is SQL?

500

Where

What sets the conditions for the select query?

500
There can just be one of these in a table.

How many primary keys can you have?

500

This operator combines the result sets of two different queries. Column data types in the two queries must match.

What is a Union?

M
e
n
u