select distinct cnamefrom borrower
where cname in
(select cname from account where bname=``SFU'')
select distinct cnamefrom borrower, loan
where borrower.loan# = loan.loan# and bname=``SFU''
and (bname, cname) in
(select bname, cname from account, depositor where depositor.account# = account.account#)
This finds all customers who have a loan and an account at the SFU branch in yet another way.