Fetch data from Mysql in Postgresql

Asked

Viewed 63 times

2

Is there any way to connect Mysql with Postgresql, so that Mysql DBMS is used but selecting data that is in Postgresql?

1 answer

2

No. A DBMS, by definition, is the place where the data is saved in a specific format, and a method of interacting with the data.

You can:

  • Convert Postgresql data to Mysql permanently
  • Using an intermediate storage system (Middleware)
  • Create an API system to extract data from Postgresql without having to use its interface for all access.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.