1.复制表(只复制结构,源表名:a 新表名:b) select * into b from a where 1<>1 2.拷贝表 insert into b(a,b,c) select d,e,f from b; 3.跨数据库之间表的拷贝(具体数据使用绝对路径) insert into b(a,b,c) select d,e,f from b in '数据库路径' where 条件 4.子查询(表名1:a 表名2:b) select a,b,c from a where a in(select…