Я пытаюсь выбрать в plsql, используя dblink, подключенный к mysql.
Вот мой запрос:
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"(+)
;
Это ошибка:
Пожалуйста, помогите. Спасибо.