SQL复制数据表 (select * into 与 insert into)
select * into tb1 from tb2 insert into tb1 (fld1, fld2) select
fld1, 0 from tb2 where fld0='x' 以上两句都是将 源表 的数据插入到 目标表,但两句又有区别的: 第一句(select into from)要求目标表不存在,因为在插入时会自动创建。 |
select * into tb1 from tb2 insert into tb1 (fld1, fld2) select
fld1, 0 from tb2 where fld0='x' 以上两句都是将 源表 的数据插入到 目标表,但两句又有区别的: 第一句(select into from)要求目标表不存在,因为在插入时会自动创建。 |