sql将a表数据复制到b表 日期:2018-08-28 17:47:57 人气:1 sql将a表数据复制到b表 假设A表和B表的字段一模一样,则可以: insert into A (select * from B where rownum <11)