Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我可以从 Oracle 表单连接到 MySQL 吗?如果是的话,你会给我举个例子吗?
我建议在您的 Oracle 数据库中创建一个指向您的 MySQL 数据库的数据库链接。然后您可以编写如下查询:
select * from oracle_table_1, mysql_table@mysql_link;
这个文件似乎有一些关于如何设置这一切的有用信息;显然这不是最简单的任务。