浦本といいます。
レスがついてない様子なので。
> こんにちは
>
> select a.id,c.code from a,b,c where a.id = b.id and a.code
> = c.code(+);
select a.id
, c.code
from a
inner join
b
on a.id = b.id
left outer join
c
on a.code = c.code
;
ですか?