I was hoping someone will be able to help me, i've got a bit of
experience with mysql, but nothing quite like this.
I have a table with 3 columns 'sid', 'aid', and 'call'.
What i want to do is to create a query that shows me all records where
sid matches and aid matches but call differs.
For example, it would give me this result:
sid aid call
abc def gh
abc def ij
and not:
sid aid call
abc def gh
abc def gh
Currently i have a query that gives me all matches of sid's and aid's
but gives me call's that match and don't match.
I hope this is not too confusing, I'm really lost at this point. Thank
you.