This blog will explain you how to use Federated tables in MySQL. Just follow the steps mentioned below to use Federated table in your MySQL server:
What is Federated Engine?
About Federated Engine in MySQL:
The FEDERATED storage engine lets you access data from a remote MySQL database without using replication or cluster technology. Querying a local FEDERATED table automatically pulls the data from the remote (federated) tables. No data is stored on the local tables.
Why to use Federated Engine?
Allows a user to create a table that is a local
representation of a foreign (remote) table.
Real world example:
There are two servers-A and B. Both servers …
[Read more]