in reply to Re^2: RFC: Verify Interpreter and Language
in thread RFC: Verify Interpreter and Language
will not show the records where foo is null. Purists might say this is how it should be, but I think it's just not very practical.SELECT * FROM mytable WHERE foo=foo
It'd be nice if you provided a simple means to test if a value is, say, NULL, 0 or "", perhaps using something like in (as in Mysql):
if($foo in (0, "", undef)) ...
I'm actually not even sure that NULL is a valid value for the IN list in Mysql...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: RFC: Verify Interpreter and Language
by exussum0 (Vicar) on Feb 14, 2006 at 18:36 UTC |