mysql中日期怎么表示 mysql中日期格式

主机教程 建站分享 2年前 (2022-11-29) 190次浏览

文章摘要:mysql中日期怎么表示 mysql中日期格式

mysql中日期的三种表示方法 1.Date格式 Date格式存储日期的格式为:YYYY-MM-DD,其支持的 […]

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';


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:mysql中日期怎么表示 mysql中日期格式
文章链接:http://www.7966.org/post/13330.html
转载请注明出处

喜欢 (0)