aaaaaaaaaaaa¯for each tuple b of borrower dofor each tuple c of customer do
if b[cname] = c[cname]
then begin
let x be a tuple defined as follows:
x[cname]:= b[cname]
x[loan#]:= b[loan#]
x[street]:= c[street]
x[city]:= c[city]
include tuple x as part of result of borrow customer
end
end
end