我的代码如下:
$sql = "
CREATE TABLE articles (
articleUID int NOT NULL AUTO_INCREMENT,
PRIMARY KEY(articleUID),
by tinytext,
article longtext,
game enum('Starcraft','Starcraft 2','Team Fortress 2','Minecraft','Tekkit','other')
)
";
if(mysql_query($sql, $con)) {
echo "The table \"articles\" was created succesfully.<br />";
} else{
echo "Error creating table: " . mysql_error() . "<br />";
}
它在 PHP 中,文件中还有其他内容,但这是给我带来问题的部分。
当我尝试运行它时,我得到的是:
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 'by tinytext, article longtext, game enum(Starcraft,Starcraft 2,Team Fortress 2,' at line 1
我不知道你是否需要我的其余代码来解决这个问题,但如果你需要,我会在编辑中发布它。谁能告诉我这里有什么问题?我已经尝试在枚举参数上使用 \" 代替 ' ,但这不起作用。