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.
我想在 int 类型的某个表格列的所有表格行数据中添加某个数字。
解释
例如,我的数据库中有这种表。
------------------------ | Name | Money | ------------------------ |John |20 | |Jake |30 | ------------------------
然后我想用 500 把他们俩的钱都加起来。提前谢谢。
跑
update your_table set `money` = `money` + 500
添加500到money所有行的列。利用
500
money
update your_table set `money` = `money` + 500 where name in ('John', 'Jake')
根据他们的 . 仅更新这两个条目name。
name