Consider Database 1 & Database 2 having a single table each Table 1 & Table 2
How is it possible to update table 1 inserting/updating/deleting any change that happens to Table 2?
Consider Database 1 & Database 2 having a single table each Table 1 & Table 2
How is it possible to update table 1 inserting/updating/deleting any change that happens to Table 2?
You can just do a cross database trigger.
If you're using SQL server you can read here: Sql Server Trigger between 2 databases
If you're using Mysql you can read here: Cross database trigger in Mysql
Perhaps create a view
showing both tables?
CREATE VIEW my_view AS
SELECT * FROM db1.Table1, db2.Table2
Any change happening at any of the tables will be shown on the view, I hope it's what you wanted~