Set operation of MySQL -
can mysql use set operation intersect
(∩) , except
(-)? if can,please give example if can't, what's operation instead?
it possible use intersect in mysql, have write little differently. here example (and here link nice description):
select a.member_id, a.name inner join b using (member_id, name)
you can find example except (minus) in page also
Comments
Post a Comment