What I have :
- a windows machine with one instance of MySQL 5.6 Server.
- two database named test and test2.
Test
database has a table calledactivity
with columnsid
andclass
What I need :
- replication of
test.activity
table totest2
database with a condition thatTest.activity.class = 'B'
.
I know how to replicate with in different server. But not for same server within different database.I have checked this link , but it does not give enough information.