Jump to content

InnoDB, NULL foreign key...


lopes_andre

Recommended Posts

Hi,

 

I have one table that have the column UserID as foreign key. But this column(UserID) will not have allways a value, this column could be NULL or have an ID of the table Users(With the prumary key UserID).

 

My problem: I can't insert new row with UserID with NULL value. And I have set the column UserID to allow NULL values.

 

If I send this query does not work:

insert into `table2` values ('', '', 'email', 'contacts', 'menssage', NOW())

 

Give me this error:

#1452 - Cannot add or update a child row: a foreign key constraint fails (`database/table2`, CONSTRAINT `fk_UserId` FOREIGN KEY (`UserID`) REFERENCES `users` (`UserID`) ON DELETE NO ACTION ON UPDATE NO ACTION) 

 

 

If I do this query, it works:

insert into `table2` values ('', '1', 'email', 'contacts', 'menssage', NOW())

 

 

What can I do to use a foreign key and allow NULL values in Foreign Keys?

 

 

Best Regards,

André.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.