Is there a better way to select empty datetime fields than this?
SELECT * FROM `table` WHERE `datetime_field` = '0000-00-00 00:00:00'
|
|
|
Better in what way? That query does everything you ask of it and, provided there's an index on If you're worried about the query looking "ugly", don't be. Its intent is quite clear. The only possible improvement you could consider is to use NULLs for these zero-date/time rows, in which case your query becomes:
That's what I'd do with a standards-compliant DBMS. My understanding is that MySQL may represent true NULL datetime fields in this horrific manner, in which case I guess the |
|||
|
|
|
I like this code because it not only catches "zero dates" (e.g. '0000-00-00 00:00:00') is also catches "zeroes in dates" (e.g. '2010-01-00 00:00:00') |
|||
|
|
I use this:
|
|||
|
|
|
Provided your date/datetime column is NOT NULL you can just use:
MySQL will select columns that equal '0000-00-00 00:00:00' for you. Note: If you do:
SELECT MySQL will return 0 (false) but it this statement is still true when used as part of the WHERE clause. From the manualFor DATE and DATETIME columns that are declared as NOT NULL, you can find the special date '0000-00-00' by using a statement like this: SELECT * FROM tbl_name WHERE date_column IS NULL This is needed to get some ODBC applications to work because ODBC does not support a '0000-00-00' date value. http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html#operator_is-null |
|||
|
|
|
Let me put out a disclaimer, I'm not sure what this will do. But it would be really cool if it worked.
|
|||
|
|