Is there a way to inner join two tables from two different databases and to update the two tables from one query ?
I have a situation where I have item (with a Name and ID) in one database, but the ordered items for that item is kept in another database (the names of these items are only in the first database) -- like in
Select DB1.Table1.Item1.Name, DB2.Table2.Item1.ID, DB2.Table2.Item1.Quantity) from DB1.Table1 inner join DB2.Table2 on Table1.Item1.ID=Table2.Item2.ID where ...
Thanks
I have a situation where I have item (with a Name and ID) in one database, but the ordered items for that item is kept in another database (the names of these items are only in the first database) -- like in
Select DB1.Table1.Item1.Name, DB2.Table2.Item1.ID, DB2.Table2.Item1.Quantity) from DB1.Table1 inner join DB2.Table2 on Table1.Item1.ID=Table2.Item2.ID where ...
Thanks