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';
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: MySQL分区的作用有哪些