The error in your SQL syntax is likely due to the incorrect use of the UPDATE statement. The correct syntax for an UPDATE statement in MySQL is as follows:

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

Based on the error message you provided, it seems that you are missing the SET keyword before updating the columns. Here's an example of how the corrected SQL statement might look:

UPDATE your_table_name
SET keeper_contact_way = '18310447505', update_user_id = '19dd03d3-13b3-1'
WHERE condition;

Make sure to replace your_table_name with the actual name of your table and update the condition according to your specific requirements

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 keeper_contact_way = 18310447505 									update_user_id = 19dd03d

原文地址: https://www.cveoy.top/t/topic/id9Q 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录