sorenchr Posted March 6, 2009 Share Posted March 6, 2009 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? Quote Link to comment https://forums.phpfreaks.com/topic/148270-solved-is-there-a-mysql-or-statement/ Share on other sites More sharing options...
revraz Posted March 6, 2009 Share Posted March 6, 2009 Did you try it? Quote Link to comment https://forums.phpfreaks.com/topic/148270-solved-is-there-a-mysql-or-statement/#findComment-778385 Share on other sites More sharing options...
sorenchr Posted March 6, 2009 Author Share Posted March 6, 2009 Did you try it? Dear god... Thank you. Quote Link to comment https://forums.phpfreaks.com/topic/148270-solved-is-there-a-mysql-or-statement/#findComment-778390 Share on other sites More sharing options...
revraz Posted March 6, 2009 Share Posted March 6, 2009 lol no problem Quote Link to comment https://forums.phpfreaks.com/topic/148270-solved-is-there-a-mysql-or-statement/#findComment-778415 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.