is it better practice to use default date '0000-00-00 00:00:00' or null on mysql database
I have read best to use default date '0000-00-00 00:00:00' for the reason of calculations
ie. >than a date less than a date.
also on time best to store 00:00 or null if time not known
NULL.0000-00-00 00:00:00is not a valid Date (and MySQL's JDBC driver will refuse to load that btw). For the time you have to useNULLbecause 00:00 is a real time (midnight). So you couldn't distinguish between midnight and "no time". – a_horse_with_no_name Sep 18 '12 at 18:090000-00-00 00:00:00only by some developers, who always want to substringdate.toString(). Why? I don't know... – edze Sep 18 '12 at 18:11