Jump to content

Pull back data from MySQL but exclude specific records?


galvin

Recommended Posts

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

 

 

Link to comment
Share on other sites

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 );

Link to comment
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.