insert into table1 select field1,field2.. from table2(oracle)
如果有怎么写?
可以,一般数据库都支持这种写法
informix支持!
我试过!
楼主试一下就没这个问题了 :)
是的,这是可以的,我经常用
当然可以,
在unix下还支持临时表
select * from xx
into temp yy;
insert into zz
select * from yy;
yy就是临时表
insert into table1 select field1,field2.. from table2
就这样写,都一样的。