I am trying to build the database and tables for my system. But I found that if I don't add the foreign key in the codes. There is no error. I've used many method try to make the codes works, but it still have error.
Create table if not exists users_details_one
(
fname varchar(255),
lname varchar(255),
address varchar(255),
users_email varchar(255),
users_password varchar(255),
department varchar(255)
);
Create table if not exists users_one
(
users_email varchar(255),
users_password varchar(255) ,
FOREIGN KEY (users_email) REFERENCES users_details_one(users_email),
FOREIGN KEY (users_password) REFERENCES users_details_one(users_password)
);
There's a typo in your foreign key:
FOREIGN KEY (users_password) REFERENCES users_details_one(users_spassword)
should beFOREIGN KEY (users_password) REFERENCES users_details_one(users_password)
and you also need indexes on
users_email
andusers_password
in tableusers_details_one
, such as this:it is not necessary for the index to be unique.
from the manual