如何将计算列添加到我的表中,该列将对名为"值"
的列中的数字执行MOD 10计算。提前致谢。
答案 0 :(得分:0)
如果只需要结果,只需将计算列添加到选择
即可SELECT *, MOD(value, 10) your_new_col
from your_table
如果您需要存储此数据,则应更改表格以添加列
alter your_table add your_new_col (int) /* assiming you work only with integer remaind */
然后您可以使用update来存储结果
update your_table
set your_new_col = MOD(value, 10)