Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Tasks
6. Task 2

Instruction

Nice! As you saw, states like Florida, California, and Texas are the most populated. Ready for another easy task and new information about US states?

Let's write a query to find information about states' ratification dates.

Exercise

For states with a ratification date in the 20th century, show their name, abbreviation, capital city, and ratification date. Sort records by ratification date, in ascending order.

Stuck? Here's a hint!

Use BETWEEN to set a range of dates in the WHERE clause:

WHERE ratification BETWEEN '1900-01-01' AND '1999-12-31'

Find more in the Filtering rows and Ordering sections in our SQL Basics course.