oracle 把从一个表读出的多条记录(不是全部)一次提交写入某个表???
环境:c# .net 2003 + oracle 9
能详细些最好 重谢!!!
[解决办法]
insert into table_b(col_1,col_2,col_3) select col_1,col_2,col_3 from table_a where table_a.col_1= ' ';
commit;
发布时间: 2012-01-18 00:23:26 作者: rapoo
oracle 把从一个表读出的多条记录(不是全部)一次提交写入某个表???
环境:c# .net 2003 + oracle 9
能详细些最好 重谢!!!
[解决办法]
insert into table_b(col_1,col_2,col_3) select col_1,col_2,col_3 from table_a where table_a.col_1= ' ';
commit;