我正在尝试使用连接到mysql的dblink在plsql中进行选择。
这是我的查询:
select
t1."header_id" header_id
from
"table1"@times t1
,"table2"@times t2
where
t1."processed" = 'no'
and
t1."returned" = 'yes'
and
t2."header_id" is null
and
t1."header_id" = t2."header_id"(+)
;
这是错误:
请帮助。谢谢。