vote up 0 vote down star

I have one table CREATE TABLE GUEST(id int(15) not null auto_increment PRIMARY KEY, GuestName char(25) not null);

CREATE TABLE PAYMENT(id int(15)not null auto_increment Foriegn Key(id) references GUEST(id), BillNr int(15) not null);

what is problem in second command, why it is not working please correct me. it did not create new table. thanks

flag

0% accept rate

5 Answers

vote up 0 vote down

i request u people to please give simpler examples so that a new learner can understand.

link|flag
vote up 2 vote down

The answer to your question is almost the same as the answer to this one .

You need to specify in the table containing the foreign key the name of the table containing the primary key, and the name of the primary key field (using "references").

This has some code showing how to create foreign keys by themselves, and in CREATE TABLE.

Here's one of the simpler examples from that:

CREATE TABLE parent (id INT NOT NULL,
                 PRIMARY KEY (id)
) ENGINE=INNODB;
CREATE TABLE child (id INT, parent_id INT,
                    INDEX par_ind (parent_id),
                    FOREIGN KEY (parent_id) REFERENCES parent(id)
                      ON DELETE CASCADE
) ENGINE=INNODB;
link|flag
vote up 1 vote down

I will suggest having a unique key for the payment table. On it's side, the foreign key should not be auto_increment as it refer to an already existing key.

CREATE TABLE GUEST(id int(15) not null auto_increment PRIMARY KEY, GuestName char(25) not null)  ENGINE=INNODB;

CREATE TABLE PAYMENT(id int(15)not null auto_increment, Guest_id int(15) not null, INDEX G_id (Guest_id), Foreign Key(Guest_id) references GUEST(id), BillNr int(15) not null)  ENGINE=INNODB;
link|flag
vote up 0 vote down

Make sure you're using the InnoDB engine for either the database, or for both tables. From the MySQL Reference:

For storage engines other than InnoDB, MySQL Server parses the FOREIGN KEY syntax in CREATE TABLE statements, but does not use or store it.

link|flag
vote up 3 vote down

You might want to replace Foriegn by Foreign for starters ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.