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.
更新 IDConfig SET FemaleID = FemaleID + 1;
出现错误,例如您正在使用安全更新模式,并且您尝试更新没有使用 KEY 列的 WHERE 的表 要禁用安全模式,请切换 Preferences -> SQL Queries 中的选项并重新连接。
您的 SQL 工具使用此机制告诉您即将更新表中的所有记录。通常你有一个 WHERE 子句来限制应该更新的数据。
因此,要真正更新所有记录,请更改配置中的该选项或使用 WHERE 子句来限制要更新的数据。
您可能可以使用此查询欺骗您的工具
UPDATE IDConfig SET FemaleID = FemaleID + 1 WHERE 1 = 1