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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -