I have a table called 'friends', this contains the columns person1 and person2.
I'm using PHP to check if a user is friends with a person. I want to do a query which will see if:
person1is Bob andperson2is Jimperson1is Jim andperson2is Bob
In other words, I want to check if they're both present in the same row. Not Jim with someone else and not Bob with someone else. It must be Bob and Jim together in the same row. What query would I use to get the row? I was thinking something along the lines of:
SELECT person1, person2 FROM friends WHERE (person1=Jim AND person2=Bob) OR (person1=Bob AND person2=Jim)
Of course this wouldn't work in SQL, but I'm looking for something along these lines. I don't want friendship duplicates in the table. Any help would be appreciated!