I am using ibatis and C#. i get a result from a select query that has CreatedDate as one of the field. The Datatype of CreatedDate in Mysql is Date. I assign the result set
This worked for me:
SELECT IF(tb.Date1 = '0000-00-00 00:00:00', NULL, tb.Date1) AS ValidDate FROM MyTable AS tb