所以我收到了这个错误然后我在反引号字符中包含了列名并且错误得到了解决,我的查询看起来像这样
$sql="INSERT INTO camera (type, company, model, tvl, range, ir, mrp, price, warranty, image)
VALUES
('$ftype','$fcompany','$fname','$ftvl','$frange','$fir','$mrp','$price','$fwarranty','$pathAndName')";
现在它看起来像这样并且工作正常
$sql="INSERT INTO camera (`type`, `company`, `model`, `tvl`, `range`, `ir`, `mrp`, `price`, `warranty`, `image`)
VALUES
('$ftype','$fcompany','$fname','$ftvl','$frange','$fir','$mrp','$price','$fwarranty','$pathAndName')";
现在我发现我收到了这个错误,因为我在查询中使用了一些关键字,我的问题是哪个关键字导致了这个错误,是范围吗?我在不使用范围列的情况下尝试了查询,但仍然遇到相同的错误。