I have a join on two tables defined as a left outer join so that all records are returned from the left hand table even if they don\'t have a record in the right hand table.
SELECT x.fieldA, y.fieldB FROM x LEFT OUTER JOIN (select fieldb, fieldc from Y where condition = some_condition) ON x.fieldc = y.fieldc