Master-> Databases replication databases into which the main database is written and the slave is read. When an INSERT is placed in the main database, the slave will contain this information, provided that the master-> slave is configured and synchronized. So, for example, if I wrote:
INSERT into TEST_TABLE (col1, col2) values ("test", 123);
If I went to a working database and asked:
SELECT col1, col2 FROM TEST_TABLE;
, . SQL, master- > slave-. , , SQL , , .