MySQL "Date" comparisons -
can explain how
where customer_artwork_issued = '0000-00-00' can return results such as
2006-10-18 0000-00-00 why 2006 date show here when doing above query?
it wouldn't. can test with:
select cast('2006-10-18' date) = '0000-00-00'; this comparison returns 0. guess have multiple date columns , looking @ wrong one.
Comments
Post a Comment