Instruction
Good job! How about one more question?
Exercise
The Ohio zoo also needs to keep track of animal caretakers.
- Create a table named
animal_caretakerwith two columns:id(integer, primary key) andfull_name(up to 32 characters). - Create a sequence named
caretaker_seq. Start with the value of1and increment by2. - Insert a new caretaker named Alexander Owens. Use the sequence to generate the value for the
idcolumn.



