Try It Yourself edits

This commit is contained in:
Anthony DeBarros 2021-09-21 20:51:50 -04:00
parent 97a5838b32
commit d3de563f30

View File

@ -5,21 +5,15 @@
-- Try It Yourself Questions and Answers -- Try It Yourself Questions and Answers
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
----------------------------------------------------------------------------
-- Chapter 1: Setting Up Your Coding Environment
----------------------------------------------------------------------------
-- There are no Try It Yourself exercises in this chapter!
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
-- Chapter 2: Creating Your First Database and Table -- Chapter 2: Creating Your First Database and Table
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
-- 1. Imagine you're building a database to catalog all the animals at your -- 1. Imagine you're building a database to catalog all the animals at your
-- local zoo. You want one table for tracking all the kinds of animals and -- local zoo. You want one table to track the kinds of animals in the
-- another table to track the specifics on each animal. Write CREATE TABLE -- collection and another table to track the specifics on each animal. Write
-- statements for each table that include some of the columns you need. Why did -- CREATE TABLE statements for each table that include some of the columns
-- you include the columns you chose? -- you need. Why did you include the columns you chose?
-- Answer (yours will vary): -- Answer (yours will vary):