次のSQLステートメントの内部クエリは、データベースの一部(code1、code2、code3など)を正規化することです。外部クエリを使用して、ルックアップテーブル(tblicd)にないコードを選択します。
select primarycode from
(
select id, primarycode from myTable
union
select id, secondarycode from myTable
union
select id, tertiarycode from myTable) as t
order by id
where primarycode not in tblicd.icd_id
上記のクエリは実行されません。何が間違っているのでしょうか。私が得るエラーはthe multi-part identifier tblicd.icd_id could not be bound