1、导入到一个临时表
2、insert into 数据表 select * from 临时表 where 临时表.帐号 not in (select 帐号 from 数据表)
3、update 数据表 set 余额=临时表.余额 from 数据表,临时表 where 数据表.帐号=临时表.帐号
4、truncate 临时表