MYSQL 使用变量更新多个列
2022-08-31 00:46:26
我使用此查询将所有值插入到此数据库中:
INSERT INTO products ($fields) VALUES ($values)
但是,我尝试对UPDATE使用相同的格式:
UPDATE products SET ($fields) VALUES ($values) WHERE sku = '$checksku'
...并且我被抛出了一个语法错误:
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 '('product,make,model,' at line 1
我无法弄清楚。将不胜感激任何帮助。谢谢。