一、将一张表a的数据插入另一张表b(b为新建表)

   

    select * into 表b  from 表a


二、将一张表a的数据插入另一张表b(b为已有表)


    insert into 表b select * from 表a