Is it possible to do a select ( or insert) statement across different databases that are located on the same server? If yes, how?
You can select from any other table with a JOIN statement and using this type of syntax.
SELECT A.*, B.* FROM db1.table1 A LEFT JOIN db2.table1 B ON A.id = B.id