像在mysql表中的计算一样excel

时间:2016-08-04 07:00:03

标签: mysql

enter image description here

如果有两列id1&显示值的id2,mysql是否可以加入这两个(添加两个字段)&进入第3个身份证。

(在excel中这么容易 - 使用一个公式,该公式从excel表的两列获取值,并在第三列中执行计算)。谢谢

2 个答案:

答案 0 :(得分:1)

你可以这样做: 如果你想连接字符串,你可以这样做:

update table set id = concat(id1,id2);

如果您想添加:

update table set id = (id1+id2);

答案 1 :(得分:1)

是的,你可以做到。

select firstCol, secondCol, concat(firstCol, secondCol) as thirdCol
from table name