correction:
select addrid from emails
where emailhost = 'yahoo.com'
and
addrid in (select addrid from address where city = 'Seattle')
intersect
select addrid from emails
where emailhost = 'hotmail.com'
and
addrid in (select addrid from address
where city = 'Seattle');
select addrid from email
where emailhost = 'yahoo.com'
and
addrid in (select addrid from address where city = 'Seattle')
intersect
select addrid from email
where emailhost = 'hotmail.com'
and
addrid in (select addrid from address
where city = 'Seattle');
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.