oracle数据库中一次插入多条数据
insert into 表名(字段名) select 字段名 from 表名 where id='条件
例:
insert into table_1(name,age) select name,age from table_2 where sex = '男';
insert into 表名(字段名) select 字段名 from 表名 where id='条件
例:
insert into table_1(name,age) select name,age from table_2 where sex = '男';