Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Sequences
Summary
16. Question 2

Instruction

Good job! How about one more question?

Exercise

The Ohio zoo also needs to keep track of animal caretakers.

  1. Create a table named animal_caretaker with two columns: id (integer, primary key) and full_name (up to 32 characters).
  2. Create a sequence named caretaker_seq. Start with the value of 1 and increment by 2.
  3. Insert a new caretaker named Alexander Owens. Use the sequence to generate the value for the id column.