create Linked in MySQL between different instances [duplicate]

-1

Hello, I have Instance A (Local) and another instance B, I need to do a query where I have table A (Local instance) relate to table B of (instance B) is possible?

    
asked by anonymous 17.09.2018 / 21:07

1 answer

1

The MySQL engine FEDERATED engine even has functionality similar to the Linked Server for SQL Server, take a look to see if it helps.

Otherwise, MySQL natively does not have this kind of functionality.

    
21.09.2018 / 14:34