Jump to content

Recommended Posts

Hi, I'm using the following query:

 

SELECT id 
  FROM home_friends 
WHERE friend_alpha = '1'
    AND friend_beta = '16' 
LIMIT 1

 

The friend_alpha and friend_beta represents a connection between to users. Meaning, user 1 is friends with user 16, and vice versa. However, the same situation could appear with the user id's reversed(alpha=16, beta=1). So im looking for a kind of 'OR' statement, to detect if the reverse situation is true. Sort of like this:

 

SELECT id 
  FROM home_friends 
WHERE (friend_alpha = '1'
    AND friend_beta = '16')
      OR (friend_alpha = '16'
    AND friend_beta = '1')
LIMIT 1

 

So does anything like this exist?

Link to comment
https://forums.phpfreaks.com/topic/148270-solved-is-there-a-mysql-or-statement/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.