Reader small image

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product typeBook
Published inApr 2024
PublisherPackt
ISBN-139781836205678
Edition1st Edition
Right arrow
Author (1)
Jamie Chan
Jamie Chan
author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan

Right arrow

Constraints

 

Now that we know how to insert, update and delete data from our tables, let’s revisit some of the constraints that we placed on our tables when we created them.

 

Remember that we have two foreign key constraints for the mentorships table? Let’s see how they work.

 

Try inserting the following data into mentorships:

 

INSERT INTO mentorships VALUES

(4, 21, 'Ongoing', 'Flynn Tech');

 

What happens? You get an error message that says

 

Error Code: 1452. Cannot add or update a child row: a foreign key constraint fails

 

right? This is due to the fact that we do not have an employee with id = 21 in the employees table. Hence, we cannot insert a row with mentee_id = 21 into the mentorships table as the mentee_id column is supposed to reference the id column in the employees table.

 

Next, let’s try to update some data in the employees table. For instance, try adding the code below...

lock icon
The rest of the page is locked
Previous PageNext Chapter
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024Publisher: PacktISBN-13: 9781836205678

Author (1)

author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan