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.
我有一个表 Person ,它是包含 1000 个条目的列之一。我想将每个人的年龄乘以 2 来更新。
是否可以在一个 SQL 查询中进行?我正在使用 MySQL 数据库。
是的,这可能是这样的:
UPDATE Persons p SET p.Age = p.Age * 2;