Jump to content

Create Table Error


wemustdesign

Recommended Posts

I am using the latest version of MySQL. I am installing a script but am getting an error when trying to create a table. Here is the SQL that creates the table:

 

CREATE TABLE "iso_countries" (
  "iso" char(2) NOT NULL default '',
  "name" varchar(80) NOT NULL default '',
  "printable_name" varchar(80) NOT NULL default '',
  "iso3" char(3) default NULL,
  "numcode" smallint(6) default NULL,
  PRIMARY KEY  ("iso")
);

 

This is the error I am getting

 

#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 '"iso_countries" (
  "iso" char(2) NOT NULL default '',
  "name" varchar(80) NO' at line 1 

 

I have no idea what the problem is...

Link to comment
https://forums.phpfreaks.com/topic/152411-create-table-error/
Share on other sites

Tried it but is still giving me an error. Is puzzling me

 

#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 ''iso_countries' (
  'iso' char(2) NOT NULL default '',
  'name' varchar(80) NO' at line 1 

Link to comment
https://forums.phpfreaks.com/topic/152411-create-table-error/#findComment-800439
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.