Jump to content

Can you see the syntax error ?


spires

Recommended Posts

CREATE TABLE IF NOT EXISTS  `admin_emails_desc` (

 

`id` BIGINT( 11 ) NOT NULL AUTO_INCREMENT ,

`admin_emails_id` BIGINT( 11 ) NOT NULL DEFAULT  '',

`lang_id` BIGINT( 11 ) NOT NULL DEFAULT  '',

`name` VARCHAR( 150 ) NOT NULL DEFAULT  '',

`subject` VARCHAR( 150 ) NOT NULL DEFAULT  '',

`body_content` TEXT NOT NULL ,

`from_name` VARCHAR( 150 ) NOT NULL DEFAULT  '',

`from_email` VARCHAR( 250 ) NOT NULL DEFAULT  '',

PRIMARY KEY (  `id` ) ,

FOREIGN KEY (  `admin_emails_id` ) ,

FOREIGN KEY (  `lang_id` )

) ENGINE = MYISAM AUTO_INCREMENT =1

MySQL said:

 

#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  (`lang_id`)

) ENGINE=MyISAM  AUTO_INCREMENT=1' at line 11

Link to comment
https://forums.phpfreaks.com/topic/253074-can-you-see-the-syntax-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.