Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
update abc set (id,name)=('3','abcd');
例外是:
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在附近使用的正确语法
这是 sql update 的正确语法。
update abc set id = '3', name = 'abcd' where ......