How would I join tables from different databases?
example join table_1(db1) and table_2 (db2) and then return some FK values
Does SQLS support cross database FK relationships?
How would you ensure integrity?
How would the syntax look when joining db2 with a FK reference?
SELECT
tb1.ID,
b.Name as Bid,
o.Name as Outcome
From table1 as tb1
left join bid as b on b.ID = g.ID
left join outcome as o on o.ID = g.ID