CREATE TABLE IF NOT EXISTS 'wp_gom_my_project' (
'my_project_id' int NOT NULL auto_increment,
'my_project_name' text NOT NULL ,
'user_id' int NOT NULL ,
'my_project_description' text NOT NULL ,
'my_project_deadline' datetime NOT NULL ,
PRIMARY KEY (`my_project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
我只是找不到錯誤。創建表:語法錯誤
這是錯誤消息:
#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 ''wp_gom_my_project' ('my_project_id' int NOT NULL auto_increment, 'my_project' at line 1
http://www.sqlfiddle.com/#!2/07f2a –