SQL把数据从一张表中导入另一张表

1、对于已存在的表:
insert into table_target(字段1,字段2....)
select (字段1,字段2....) from table_source
2、对于尚未建立的表:
select  (字段1,字段2....)  into table_target
from table_source 

posted on 2012-05-24 16:17  lovezj9012  阅读(392)  评论(0)    收藏  举报

导航