同じサーバーに 2 つの DB があります。DBごとに2つの単純な選択クエリがあり、正しく機能します。ただし、結合に結合すると失敗します。これを修正したい。
疑似コード -
select *
from (select columns from DB1) as D1
inner join
select *
from (select columns from DB2 where some valid condition) as D2
on D1.column1 = D2.column1
エラー -
Incorrect syntax near the keyword 'SELECT'. (ie second "outer" select)
Incorrect syntax near the keyword 'on'.