Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
3. Adding new data
Foreign keys
Multi-column Foreign Keys
Summary

Instruction

Great! Okay, now let's add a project and see what happens.

Exercise

Add a new project to the project table. Its id is 4, name is 'Office party', and description is 'To be completed'. The manager is Amelia Foster, so the manager_id will be 1.

Stuck? Here's a hint!

Type:

INSERT INTO project VALUES
(4, 'Office party', 'To be completed', 1);