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.
我有一个有 3 列的表。
A 列包含数字。
B 列包含数字。
C 列是空的。
有没有一种方法可以像 excel =sum(a1+b1) 一样将 A 列和 B 列的总和放入 C 列
您可以在 SELECT 语句中进行数学运算。
SELECT price, tax, price+tax AS total FROM orders
这将为您提供三列:price和tax直接来自行,并且total在执行 SELECT 时动态计算。
price
tax
total
您可以像这样更新第三列:
UPDATE orders SET total=price+tax
这将更新total每一行中的列,但这是不必要的,也是不好的做法。当可以动态计算这些值时,您不需要存储这些值。