I have two tables: tab1,tab2
I want add a foreign key to tab2 and wrote this query
ALTER TABLE tab2
ADD FOREIGN KEY(name) REFERENCES tab1(name)
But I get this error:
error 1005(HY000):can't create table 'club.#sql-6f0_2' (errno:150)
What is wrong?
Edit
i write this tables only for test.
tab1
name char(20) private key
lname char(20)
tab2
ssn int private key
name char(20)
I answered this for you about an hour ago in a comment on your other question, but here it is again:
You can get details on that error by running
SHOW ENGINE INNODB STATUS\Gand reading theLATEST FOREIGN KEY ERRORsection.The most likely reasons for this failure: