自从我使用SQL以来已经有一段时间了,所以这一切都耗尽了。但是当我使用此查询时,$ selectionArray [' id']的值为1,它会返回此错误:
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 'WHERE `id` = `1`' at line 1
这是查询:
$randomHashQuery = "INSERT INTO users (`hash`)
VALUES (`" . HASH . "`)
WHERE `id` = `" . intval($selectionArray['id']) ."`";
对此可能有一个非常简单的解决办法,但我似乎无法弄明白。