4

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 Answer 1

4

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.

Sign up to request clarification or add additional context in comments.

1 Comment

If you use mysql_fdw in PostgreSQL it'll work, but probably perform pretty poorly as it's quite limited in how it executes cross-server joins using FDWs.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.