Albatross Posted February 18, 2007 Share Posted February 18, 2007 I'm trying to use an sql string to return all records that do not have a specific item in them. Here's the code : $sql = "SELECT id, charname, ban FROM $table_name WHERE approved == 'none'";[/php In the ban field portion of the form that I use as the front end, there are options the person filling it out can use. What I'm trying to have happen is for this string to show me any records that do not equal 'none' (which is the default option). Short version is that I only want to see this with something other than the word 'none' I tried <> and == but didn't work. Any ideas? ~~~ Ok....in writing this I found my own error. [code=php:0]WHERE approved <> should have been WHERE ban <> Reason I'm leaving this post in is in case anyone else hits the same issue. Quote Link to comment https://forums.phpfreaks.com/topic/39084-resolvedretrieving-db-records-that-do-not-have-a-specific-value/ 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.