日期:2014-05-17  浏览次数:20800 次

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;