mysql中日期的三種表示方法
1.Date格式
Date格式存儲日期的格式為:YYYY-MM-DD,其支持的范圍為'1000-01-01'到'9999-12-31';
update sys_tables set crt_date = '1233-12-12' where table_name = 'sys_dict_item';
2.Datetime格式
Datetime格式是日期與時間的組合,存儲格式為:YYYY-MM-DD HH:MM:SS,其支持的范圍為'1000-01-01 00:00:00'到'9999-12-31 23:59:59';
update sys_tables set crt_date = '1233-12-12 12:12:12' where table_name = 'sys_dict_item';
3.TimeStamp格式
TimeStamp格式是指時間戳,其范圍為:1970-01-01 00:00:00 到2037年;
update sys_tables set crt_date = 20081212121212 where table_name = 'sys_dict';