Domanda pubblicata
update backup_conf_allied set `date_export='2014-23-01'` where file_path='IDF-952584-SW1' ;
Come dovrebbe essere
update backup_conf_allied set `date_export='2014-01-23'` where file_path='IDF-952584-SW1' ;
MySQL Supporta il formato DATE come 'AAAA-MM-GG', Year then Month then Date
, Quindi stai aggiornando una colonna Data con un valore errato "2014-23-01"
, Ci sono solo 12 mesi nell'anno, stai usando il mese 23 che non è valido che MySQL lo sta convertendo in ZERO DATE (0000-00-00)