如果有两列id1&显示值的id2,mysql是否可以加入这两个(添加两个字段)&进入第3个身份证。
(在excel中这么容易 - 使用一个公式,该公式从excel表的两列获取值,并在第三列中执行计算)。谢谢
答案 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