01、把年度数据采集表_bak01的数据插入到年度数据采集表:
insert into 年度数据采集表 select * from 年度数据采集表_bak01
02、把年度数据采集表的数据插入到年度数据采集表_bak01---如果没有该表会自动创建,如果有了,就提示该表已经存在用上面的01插入法:
Select * Into [年度数据采集表_bak01] FROM [年度数据采集表] where 年=2020 and 月=09
01、把年度数据采集表_bak01的数据插入到年度数据采集表:
insert into 年度数据采集表 select * from 年度数据采集表_bak01
02、把年度数据采集表的数据插入到年度数据采集表_bak01---如果没有该表会自动创建,如果有了,就提示该表已经存在用上面的01插入法:
Select * Into [年度数据采集表_bak01] FROM [年度数据采集表] where 年=2020 and 月=09