数据库:数据库A表名:student 数据库A的库名:school_A
数据库B表名:student
insert into student --要把数据插入数据库B中的student表
select * from student@school_A --数据库A:school_A 中的student表(注意1:school_A需要是登录状态 注意2:输入@时,一般会有提示,也可根据提示选择对应的数据库)
where rownum <=500; --数据库A的student表的前500个数据,如不写,代表整张表的数据全部复制到A表
commit; --提交
(写成四行,便于区分。 如果提示有错误字符,把所有的注释删除)