0

Is it possible to write just one query in postgresql database that can also fetch the data from mysql server? With dblink_connect feature of the postgresql database I was able to achieve this goal from another postgresql database but not mysql database. With mysql database it gives me connection refused error.

This is the query I used in a postgresql database and fetched data from another postgresql database:

create extension dblink;
select * from dblink('dbname=dbaname port=1234 host=123.456.678.321 user=username password=password', 'SELECT name FROM tbl_customer') AS newTable (mname varchar);
1
  • That's not possible. Commented Aug 9, 2021 at 20:02

1 Answer 1

2

You'll need to use (and install) a foreign data wrapper.

mysql_fdw is one possible option.

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

Comments

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.