怎么用将一个表里的数据计算之后再导入另外一个表。就是将销售细则中的数据计算之后导入销售单的总价。
insert into tablenew select 字段,字段计算结果... from tableold
可以用insert into table_target select * from table_source