可以用计算列来实现如建表时可用如下写法create table t1(col1 int not null,col2 int not null,col3 as col1 + col2,)如表已存在可用如下方式来增加计算列alter table t1 add col3 as col1 + col2
update 表名 set colum3=colum1+colum2
select colum1,colum2, colum1+colum2