Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Your First Table
3. Query the table
CREATE TABLE basics
Entity Relationship Diagrams (ERD)
Summary

Instruction

Good job! You've added your first row to your first table. The museum exhibit has started to fill up! Before we proceed, let's check if everything is working perfectly by writing a simple SQL query.

Exercise

Let's find out if the row has been inserted correctly. Write a simple SQL query that will select the production_year column for the row with the name 'Matryoshka'.

Stuck? Here's a hint!

Type:

SELECT production_year
FROM exhibit
WHERE name = 'Matryoshka';