Jump to content

[SOLVED] problem in creating foreign key


phplearner2008

Recommended Posts

Hi,

I am a mysql newbie. I have two tables

profile and interest for which i want to create foreign key relationship.

 

profile table has following fields

( id int(10) not null primary key

email varchar(30) not null unique key

password varchar(20) not null

name varchar(20) )

 

interest table has following fields

( sent_by int(10) not null primary key

  sent_to int(10) not null primary key

  status varchar(10) not null )

 

I tried to create foreign key relationship like this

ALTER TABLE interest ADD FOREIGN KEY(sent_by,sent_to)

REFERENCES profile(id) ON DELETE CASCADE ON UPDATE CASCADE

 

But I got error code: 1005 Cannot create table'\.#sql778_1.frm'(errno.150)

 

The profile table has only one primary key that is 'id'.

The interest table has combination of columns sent_by and sent_to as primary keys. How do i create foreign key relationship. Can anyone guide me?

Thanks

Link to comment
Share on other sites

Try to make two separate constraints, i.e.

 

ALTER TABLE interest ADD FOREIGN KEY(sent_by)
REFERENCES profile(id) ON DELETE CASCADE ON UPDATE CASCADE;

ALTER TABLE interest ADD FOREIGN KEY(sent_to)
REFERENCES profile(id) ON DELETE CASCADE ON UPDATE CASCADE;

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.