Link to home
Start Free TrialLog in
Avatar of FairyBusiness
FairyBusinessFlag for United States of America

asked on

How to set a forgien key when creating a table?

Hi, I dont know why but whenever I try to set a foreign key it causes me so much trouble!!  Can someone please tell me what I am doing wrong??

CREATE TABLE children (
 id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
 submenu_id INT FOREIGN KEY REFERENCES submenus(id) NOT NULL,
 title VARCHAR(255) NOT NULL,
 name VARCHAR(100) NOT NULL,
 blurb VARCHAR(100) NOT NULL,
 header VARCHAR(255) NOT NULL,
 img VARCHAR(100) NOT NULL,
 caption VARHCAR(255) NOT NULL,
 content TEXT NOT NULL
);

Open in new window


#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FOREIGN KEY REFERENCES submenus(id) NOT NULL,
title VARCHAR(255) NOT NULL,
n' at line 3
ASKER CERTIFIED SOLUTION
Avatar of Sharath S
Sharath S
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of FairyBusiness

ASKER

Tried but I got this error msg back:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARHCAR(255) NOT NULL,
content TEXT NOT NULL,
FOREIGN KEY (submenu_id) REFER' at line 9
The problem was I spelled varchar wrong for one of them. But other then that I used your way and it worked