1)Access 
============
db2.Execute "select * into table2 from c:\db1.table1"   '把整个表复制过去。
db2.Execute "Insert Into table2(fld2) values (fld1)    '插入数据2) SQL Server 
=============
Select * Into database2.dbo.table2 From database1.dbo.table1 Where 1 = 2;
--但是先得保證database2的select into的dboption必須是true;
否則就要
sp_dboption database2,'Select Into/bulkcopy',true;这里指的是MSSql  server里的用法。database2是数据库名,dbo是用户名,table是表名
  
3) Oralce
=============
Create Table table2 As Select * From table1 Where rownum < 1;