galvin Posted January 8, 2011 Share Posted January 8, 2011 I want to write a mysql statement to pull user info from a table, but I want to exclude specific users. Below is the query with the part i need help with in plain english (starting with "WHERE..."). Can someone tell me how I can write that so that MySQL understands it ... $user_set = mysql_query("SELECT * FROM users WHERE userid IS NOT EQUAL TO 18 or 33 or 26 or 27 or 47 or 21 or 44 or 45"); I tried this but it's clearly wrong :-\ .... WHERE userid != 18 || 33 || 26 ||27 || 47 || 21 || 44 || 45 || 22 || 46 Quote Link to comment https://forums.phpfreaks.com/topic/223780-pull-back-data-from-mysql-but-exclude-specific-records/ Share on other sites More sharing options...
Pikachu2000 Posted January 8, 2011 Share Posted January 8, 2011 You can either store the values in an array and implode() them in the query string, or just list them within the parentheses separated by commas. As long as they're numeric, there's no need to have each value in quotes. $not = array(18, 33, 26, 27, 47, 21, 44, 45, 22, 46); $query = "SELECT * FROM users WHERE userid NOT IN( " . implode ', ', $not) . ")"; $user_set = mysql_query( $query ); Quote Link to comment https://forums.phpfreaks.com/topic/223780-pull-back-data-from-mysql-but-exclude-specific-records/#findComment-1156675 Share on other sites More sharing options...
galvin Posted January 8, 2011 Author Share Posted January 8, 2011 perfect, thanks!!!! Quote Link to comment https://forums.phpfreaks.com/topic/223780-pull-back-data-from-mysql-but-exclude-specific-records/#findComment-1156679 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.