Instruction
Good. The data was successfully inserted. Nothing out of the ordinary, right? Now, let's try to add a project with a manager_id which will be incorrect.
Exercise
Add another project to the table project. Its id is 5, name is 'Disco in the office', and description is:
'A project to build a disco club inside the office so that our employees can stay longer at work on Fridays.'The
manager_id this time will be... 10. We don't have a person with
id 10, so let's see what happens.
Stuck? Here's a hint!
Type:
INSERT INTO project VALUES (5, 'Disco in the office', 'A project to build a disco club inside the office so that our employees can stay longer at work on Fridays.', 10);



