我只想返回拥有所有活动帐户的经理。在这种情况下,我希望返回 jane 和她的三个帐户和数据行。
select *
from [Table1] t1
left join [Table2] t2
on t1.account = t2.account
where lower(t1.flag)='y'
and not exists (select 1 from [Table1] tt1 where tt1.account=t1.account and tti.flag in ('NULL','n'))
我的例外回报需要是: 预期回报数据