PHP、MySQL 错误:列计数不匹配
在 PHP 中,当您遇到错误“列计数与值计数不匹配”时第 1 行”,它表示数据库表中的字段(列)数量与 SQL 中插入的值数量不匹配查询。
考虑以下代码:
$query = sprintf("INSERT INTO dbname (id, Name, Description, shortDescription, Ingredients, Method, Length, dateAdded, Username) VALUES ('', '%s', '%s', '%s', '%s', '%s', '%s', '%s')", mysql_real_escape_string($name), mysql_real_escape_string($description), mysql_real_escape_string($shortDescription), mysql_real_escape_string($ingredients), mysql_real_escape_string($length), mysql_real_escape_string($dateAdded), mysql_real_escape_string($username));
在此示例中,您在 INSERT 语句中列出了 9 个字段,但只提供了 8 个值。 “方法”字段缺少相应的值。
要解决此问题,请确保在 SQL 查询中包含所有必填字段,并为每个字段提供匹配的值。在这种情况下,您需要为“方法”字段添加一个值。
以上是为什么我的 PHP MySQL INSERT 查询会出现'列计数不匹配”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!