Instruction
Now that we know the data, let's get started!
Data about all the zoo's animals is stored in the Animal table. Recall that this table contains these columns:
IdNameSpeciesCityAgeArrivedDatePicture(The default value isN'No picture')
Exercise
Insert data into the Animal table for two new mammals:
| Id | Species | Name | Age | ArrivedDate |
|---|---|---|---|---|
| 6 | bear | Max | 2 | today |
| 7 | tiger | Smokey | 1 | today |
At this time, we don't know any more about these animals.
Stuck? Here's a hint!
Use the GETDATE() function to get today's date.



