"SELECT * FROM yard WHERE loc <>'Used'"
This will give me everything where loc is something other than Used, but it will not give any records where loc is NULL, what would you recommend?
MySQL Query not returning NULL
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
MySQL Query not returning NULL
"Det bästa stället att hitta en hjälpande hand är i slutet av din egen arm" förutom här
Re: MySQL Query not returning NULL
Code: Select all
SELECT * FROM yard WHERE loc <>'Used or loc IS NULL
Re: MySQL Query not returning NULL
works great, thank you so much.
"Det bästa stället att hitta en hjälpande hand är i slutet av din egen arm" förutom här