У меня есть один запрос, написанный в postgresql
select components.*
from sg_paycomponents components
left outer join tblextempinfo info
on info.c_company=components.company
where components.type ='RECURRING-AMOUNTS'
and components.cid not in (
select components
from sg_recurringamounts
where employee =400
)
and info.employee=400;
этот запрос дает мне все записи, но я хочу, чтобы в таблице sg_paycomponents я также получил эту запись, где type = 'RECURRING-AMOUNTS' и company is nullмой запрос не дает мне, если компания пуста, может ли кто-нибудь PLZ помочь