下面的 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