- Oct 24, 2000
- 17,254
- 44
- 91
Alright, I've got a private message system on my site. I'm trying to alert the user to how many "new" message they have... the unread messages have a database field "Read" set as a default of "0000-00-00". So, it would be simple to just select everything except those right?
SELECT *
FROM Message
WHERE Read <> "0000-00-00"
Right?
It's not working...
Gimme a hand please?
SELECT *
FROM Message
WHERE Read <> "0000-00-00"
Right?
It's not working...
