how to access postgres from mysql?

安稳与你 提交于 2019-12-18 08:57:16

问题


Is it possible to access a Postgres database from MySQL, so that I could run a single query that does joins across tables in both databases?

For example:

SELECT * FROM postgres.db1.table1 as t1, mysql.db2,table2 WHERE t1.id=t2.id;

回答1:


According to the MySQL CREATE SERVER documentation:

The wrapper_name should be mysql, and may be quoted with single quotation marks. Other values for wrapper_name are not currently supported.

So the answer is no, you cannot do that at the moment, but you can access the MySQL server from within PostgreSQL instead.



来源:https://stackoverflow.com/questions/26385118/how-to-access-postgres-from-mysql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!