Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing an application in Perl to handle data from a MySQL database. I need to select only records that have a valid ISO format date, YYYY-MM-DD. However a lot of the records don't have a value for the month or day, so they are like this 1999-00-00. I need to filter these out.

I could do it with Perl, but I think the best way to do it would be to use the REGEXP function in the SQL statement; however I'm not sure if this is the best way; nor do I know how I would regex the data.

Thanks for any suggestions!

share|improve this question
Once you do so, think about storing dates as dates and not strings. – Dan Bracuk Feb 3 at 14:22
@DanBracuk: mysql allows storing partial dates in its date fields, where any of the parts may 0. this is occasionally convenient, and often not. – ysth Feb 3 at 17:45

1 Answer

up vote 2 down vote accepted

You could always just use:

where DATE_COL not like '%-00-00'
share|improve this answer
or where year(DATE_COL) and month(DATE_COL) and dayofmonth(DATE_COL) – ysth Feb 3 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.