我有这个查询将正确返回作为IN
子句一部分的值,但是当我将其更改为 时NOT IN
,它不会返回任何内容。
有没有人有什么建议?
select distinct
CAST( w.work_area AS CHAR(4) ) || s.code_id as WATT
from
sys_code s,
work_area_master w
where
s.code_type = '590'
and (
CAST( w.work_area AS CHAR(4)) || s.code_id
)
in (
select substr(misc_flags, 1,6)
from sys_code where code_type = 'STA'
);