Hey..
CREATE TABLE IF NOT EXISTS 'items' (
'id' int(10) NOT NULL AUTO_INCREMENT,
'title' varchar(200) NOT NULL,
'year' int(4) NOT NULL,
'length' varchar(100) DEFAULT NULL,
'description' text NOT NULL,
PRIMARY KEY ('id')
) ENGINE=InnoDB;
#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 ''items' (
'id' int(10) NOT NULL AUTO_INCREMENT,
'title' varchar(200) N' at line 1
I don't understand the problem
CREATE TABLE IF NOT EXISTS 'items' (
'id' int(10) NOT NULL AUTO_INCREMENT,
'title' varchar(200) NOT NULL,
'year' int(4) NOT NULL,
'length' varchar(100) DEFAULT NULL,
'description' text NOT NULL,
PRIMARY KEY ('id')
) ENGINE=InnoDB;
#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 ''items' (
'id' int(10) NOT NULL AUTO_INCREMENT,
'title' varchar(200) N' at line 1
I don't understand the problem