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.
有谁知道如何使用java更新mysql中的整个列?我需要将在线列设置为 0。
UPDATE tablename SET online = 0;
不要在查询中添加where子句。
例如
update Person set name="XYZ" where id=1;
在这里,您只更新特定的结果集。
但是没有 where 子句的相同查询,
update Person set name="XYZ".
您正在更新名称列设置为 XYZ 的所有记录。