What am I
SQL Basics
Hide and Seek
Excel Equivalents
Miscellaneous
100

I'm used to return all records in a table

What's an asterick or wildcard?

100
SQLite is one of these

What is a database?

100

WHERE appears after this clause

What is the FROM clause?

100

Order by

What is sort?

100

People often forget to use the punctuation at the end of a SQL statement

What is a semi-colon

200
Most people use me to better understand the structure of database tables

What is an entity relationship diagram?

200

This number of SQL clauses

What is 6?

200

Use this in the if you want to filter missing values

What is "IS NULL"?

200

Where clause

What is filter?

200

This data type is the equivalent of a text or string

What is VARCHAR?

300

I'm used to count unique values

What is count(Distinct)?

300

This is short name for a column or table

What is an alias?

300

This can be used instead of an OR operator when searching a single column

What is IN()?

300

Case When

What is the if function?

300

This constraint prevents missing values in the column

What is NOT NULL?

400

If my column has this designation, I can be used to connect to a column in another 

What is primary or foreign key?

400

You can only use this in the HAVING clause

What are aggregate functions?

400

This type of function is not allowed in the Where clause

What is an aggregate function?

400

Group By Clause

What is the pivot table, group, or group by in Power Pivot?

400

To add values to a table you need this

What is Insert Into?

500

I can be used to delete a table or column

What is the DROP command?

500

This type of JOIN is used to find missing data

What is left, right, or full-outer join?

500

Use this to return top or bottom 5 rows

What is a LIMIT 5 ?

500

Like Operator

What is Contain?

500

Create, Read, Update and Delete

What are CRUD commands?