What is a row of data called?
A record
Re-write the SQL query to correctly select everything from the shows table.
SELECT *
FROM shows;
What is a column of data called?
field
Re-write the SQL query to correctly select name and genre from the shows table. 
SELECT name, genre
FROM shows;
What keyword do we put before the name of the table in a SQL query?
FROM
Write the SQL query to choose the name, GPA, and age of all students listed in the students table.
SELECT name, GPA, age
FROM students;
What keyword do we put before the names of the columns that we are choosing in a SQL query?
SELECT
Write the SQL query to choose the name, GPA, and age of all students listed in the students table but only for students that live in the city of Pensacola or Mobile.
SELECT name, GPA, age
FROM students
WHERE city IN ('Pensacola', 'Mobile');
What does SQL stand for?
Structured Query Language
Write the SQL query to choose the name, GPA, and age of all students listed in the students table but only for students that live in the city of Pensacola or Mobile and whose major is Neuroscience and age is younger than 30.
SELECT name, GPA, age
FROM students
WHERE city IN ('Pensacola', 'Mobile')
AND major = 'Neuroscience'
AND age < 30;