The Little Guy Posted November 8, 2008 Share Posted November 8, 2008 How can I get this code to work? SELECT * FROM users LEFT JOIN pref ON (users.id = pref.owner),friends WHERE pref.owner = '45' AND (requester = '45' OR receiver = '45') AND (requester = '1' OR receiver = '1') It MUST return a result if there is a user, even if the user doesn't have any corresponding pref owner. If their isn't any user, then it shouldn't return a result. The maximum number of results this can and will return is one. So, how can I get a result? The above code should return one result. Quote Link to comment https://forums.phpfreaks.com/topic/131926-return-a-result/ Share on other sites More sharing options...
corbin Posted November 8, 2008 Share Posted November 8, 2008 Not sure exactly what your table schema is, but you could try changing pref.owner = '45' to users.id = '45' Quote Link to comment https://forums.phpfreaks.com/topic/131926-return-a-result/#findComment-685381 Share on other sites More sharing options...
Mchl Posted November 8, 2008 Share Posted November 8, 2008 Apart from pref.owner thing - Isn't what you mean actually: (receiver = 1 AND requester = 45) OR (receiver = 45 AND requester = 1) ? Quote Link to comment https://forums.phpfreaks.com/topic/131926-return-a-result/#findComment-685398 Share on other sites More sharing options...
The Little Guy Posted November 8, 2008 Author Share Posted November 8, 2008 Apart from pref.owner thing - Isn't what you mean actually: (receiver = 1 AND requester = 45) OR (receiver = 45 AND requester = 1) ? IDK, what I have for that part works for me.. Quote Link to comment https://forums.phpfreaks.com/topic/131926-return-a-result/#findComment-685402 Share on other sites More sharing options...
Mchl Posted November 8, 2008 Share Posted November 8, 2008 I don't know any more than you It's just that it looks logical to me at a glance. Quote Link to comment https://forums.phpfreaks.com/topic/131926-return-a-result/#findComment-685417 Share on other sites More sharing options...
corbin Posted November 8, 2008 Share Posted November 8, 2008 You could probably just do: SELECT * FROM users LEFT JOIN pref ON (pref.owner = 45),friends WHERE users.id = 45 AND (requester = 45 OR receiver = 45) AND (requester = 1 OR receiver = 1) Quote Link to comment https://forums.phpfreaks.com/topic/131926-return-a-result/#findComment-685493 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.