声名:a,b ,都是表
--b表存在(两表结构一样) insert into b select * from a
若两表只是有部分(字段)相同,则
insert into b(col1,col2,col3,col4,...) select col1,col2,col3,col4,... from a where...
把表a插入到表b中去。
--b表不存在 select * into b from a // select (字段1,字段2,...) into b from a