khunjack Posted October 15, 2007 Share Posted October 15, 2007 Hi, I'll have a session array with growing numbers of id's. array = (2222,4444,32323,...} The records with these id's need to be excluded ... e.. ' .... id!=2222 and id!= 4444 ' Sure could build this querey via a loop. Question: Is there a better/shorter way in the WHERE Clause ??? ??? WHERE id!={array} ... ??? Thanks for every feedback Jack Quote Link to comment Share on other sites More sharing options...
Barand Posted October 15, 2007 Share Posted October 15, 2007 <?php $array = (2222,4444,32323) $values = join (',', $array); $sql = "SELECT * FROM tablename WHERE id NOT IN ($values)"; Quote Link to comment Share on other sites More sharing options...
khunjack Posted October 15, 2007 Author Share Posted October 15, 2007 Barand, fantastic!!! Thank you very much for your straight forward solution .. big time appreciated. Jack Quote Link to comment Share on other sites More sharing options...
fenway Posted October 16, 2007 Share Posted October 16, 2007 Just remember this prevents the use of any index. Quote Link to comment 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.