select into 数据库1.dbo.导入表 from 数据库2.dbo.导出表 insert into 数据库1.dbo.导入表(fld1, fld2) select fld1,fld2 from 数据库2.dbo.导出表 以上两句都是将 导出表 的数据导入到(导入表)中,但两句又有区别的。
第一句(select into from)要求目标表(导入表)不存在,因为在导入时会自动创建。
第二句(insert into select from)要求目标表(导入表)存在,由于目标表已经存在。