Hi,
Can we use intersect with delete command (or only with select) like :
delete addrid from emails
where emailhost = 'yahoo.com'
and
addrid in (select addrid from address where city
= 'Seattle')
intersect
delete addrid from emails
where emailhost = 'hotmail.com'
and
addrid in (select addrid from address
where city = 'Seattle');
Thanks.
Can we use intersect with delete command (or only with select) like :
delete addrid from emails
where emailhost = 'yahoo.com'
and
addrid in (select addrid from address where city
= 'Seattle')
intersect
delete addrid from emails
where emailhost = 'hotmail.com'
and
addrid in (select addrid from address
where city = 'Seattle');
Thanks.