SQL Basics
Avatar the Last Airbender
Database Concepts
Halloween
Basic SQL Queries
100

This SQL command is used to display all rows and columns from a table.

What is SELECT *?

100

This character is the last known Airbender and the Avatar in the series.

Who is Aang?

100

The field that uniquely identifies each record in a table.

What is a primary key?

100

This popular Halloween symbol is a carved pumpkin with a face, often illuminated by a candle inside.

What is a jack-o'-lantern?

100

Write an SQL query to display all columns from the Authors table.

What is SELECT * FROM Authors;?

200

This SQL keyword removes duplicate values from the results.

What is DISTINCT?

200

This character is Aang’s Earthbending teacher and a member of Team Avatar known for her blindness.

Who is Toph Beifong?

200

his type of database is composed of interconnected tables.

What is a relational database?

200

In North America, children traditionally dress in costumes and go door-to-door saying this phrase to receive candy.

What is "Trick-or-treat"

200

Write a query to show the family names of all authors.

What is SELECT Family FROM Authors;?

300

This SQL command is used to sort query results in descending order.

What is ORDER BY ... DESC?

300

his is the name of the Fire Nation prince's sister who is initially Aang's enemy but eventually becomes his ally. (Also my dog's name)

Azula

300

A database table column, also known as this, represents an attribute of the entity.

What is a field?

300

This animal, often associated with witches, is considered a symbol of bad luck, especially if it crosses your path.

What is a black cat?

300

Write a query to list the barcodes of all missing items in the Items table.

What is SELECT Barcode FROM Items WHERE Status = 'Missing';?

400

This clause filters results to show only entries matching specific criteria.

What is WHERE?

400

This episode introduced the audience to the tragic love story of Avatar Kuruk and his lost love.

What is "The Puppetmaster"?

400

A database engine that operates without a server and is commonly used in embedded applications (Also what the web publication we are using today is based on).

What is SQLite?

400

The origin of Halloween can be traced back to this ancient Celtic festival, which celebrated the end of the harvest season.

What is Samhain (pronounced "sow-in")?

400

Write an SQL query to retrieve all titles from the Works table published in 2020.

What is SELECT Title FROM Works WHERE Date = 2020;?

500

This SQL function counts the number of rows that meet a condition.

What is COUNT()?

500

This spirit is known as the "Face Stealer" and is feared by many for its ability to take faces.

Who is Koh?

500

This special value indicates missing or unknown data in a table.

What is NULL?

500

Known as the “Pumpkin King,” this character from a 1993 Tim Burton movie decides to take over Christmas, causing spooky chaos.

Who is Jack Skellington?

500

Write a query to find the first and last names of authors born after 1950.

What is SELECT Family, Personal FROM Authors WHERE Birth > 1950;?

M
e
n
u