Problem #1: Set up the tables and include primary keys and foreign keys to link the tables together
Problem #2: Using the table from #1, I want you to use the check constraint and the unique constraint. Explain the problem with using the not null constraint after the table has been populated.
Problem #3: Using the foreign keys from #1, explain how foreign keys are created and how they can be added to a table after it is created. Explain the relationship between primary and foreign keys.
Problem #4: Using the tables from #1, try to create a record that would put on a record with a dupicate primary key. Try to add a record that would be caught by the check or and try to add a record that would be caught by the unique.
Problem #5: Create an index for the first table and explain.