oracle中表的操纵,pl/sql developer
发布网友
发布时间:2022-04-08 10:09
我来回答
共4个回答
热心网友
时间:2022-04-08 11:38
新的表假设为table3
在sql窗口或者命令窗口:
先建表,然后
insert into table3 select table1.id,... from table1,table2 where table1.id=table2.id;
热心网友
时间:2022-04-08 12:56
建表
create table3(
id number);(主键等你可以自己设)
insert into table3
(select a.id from a inner join b on a.id=b.id);
热心网友
时间:2022-04-08 14:31
select * from table1 a,table2 b where a.id=b.id
执行这个就行.
在pl/sql developer中的SQL窗口执行.
热心网友
时间:2022-04-08 16:22
insert into table3 (field1,field2...)
select a.field1,b.field1...
from table1 a,table2 b
where a.id = b.id