MySQL与Java中的日期类型对应关系与使用教程

  • Post author:
  • Post category:java




介绍

mysql中日期类型

MySQL Java
DATE java.sql.Date
TIME java.sql.Time
YEAR java.sql.Date
DATETIME java.sql.Timestamp
TIMESTAMP java.sql.Timestamp



Date

A date. The supported range is ‘1000-01-01’ to ‘9999-12-31’. MySQL displays DATE values in ‘YYYY-MM-DD’ format, but allows you to assign values to DATE columns using either strings or numbers.

只记录日期信息,表示范围为1000-01-01 至 9999-12-31。

MySql 按照YYYY-MM-DD 的方式进行该类字段的显示。添加该类字段数据,即可以使用字符串类型,也可以使用数字类型

由于Date类型的字段只记录日期信息,所以如果添加的数据中包含了时间信息,该时间信息将会自动被截断。

如果要保存时间信息,可以考虑使用DateTime类型。

经过测试,发现如下2种方式可以对Date类型字段进行填充:

按字符串:

insert into time_table(CreateDate) values(‘2007-04-09’)

按数字:

insert into time_table(CreateDate) values(20070409)

获取可以用java.sql.Date类型获取



DateTime

A date and time combination. The supported range is ‘1000-01-01 00:00:00’ to ‘9999-12-31 23:59:59’. MySQL displays DATETIME values in ‘YYYY-MM-DD HH:MM:SS’ format, but allows you to assign values to DATETIME columns using either strings or numbers.

DateTime 与Date最主要的区别在于:DateTime 可以记录日期和时间信息。而Date只记录日期信息。表示范围为: 1000-01-01 00:00:00 至 9999-12-31 23:59:59 MySql的按照YYYY-MM-DD HH:MM:SS对数据进行格式化,允许以字符串和数字的方式提交。

例如以数字的方式进行提交:

insert into time_table(CreateDate) values(20070409132013)

获取该类型的数据可以使用:java.sql.Timestamp类型



TimeStamp

A timestamp. The range is ‘1970-01-01 00:00:00’ to partway through the year 2037. A TIMESTAMP column is useful for recording the date and time of an INSERT or UPDATE operation. The first TIMESTAMP column in a table is automatically set to the date and time of the most recent operation if you don’t assign it a value yourself. You can also set any TIMESTAMP column to the current date and time by assigning it a NULL value.

与DateTime类型非常相似

范围为1970-01-01 –2037年,精度为1秒/

如果在Sql中未对Timestamp类型的列赋值,该列将被构造成当前时间。

提交NULL值也会使该列以当前时间录入。

如果时间提交错误,该列将被填入0.

Timestamp比DateTime 类型所需的存储空间更小,只需要4个字节,而DateTime需要8个字节。

但是有一点需要特别注意。Timestamp只能表示时间范围为1970 -2037.

使用Timestamp一定要确保提交的时间数据一定不会超过这个范围。



Time

A time. The range is ‘-838:59:59’ to ‘838:59:59’. MySQL displays TIME values in ‘HH:MM:SS’ format, but allows you to assign values to TIME columns using either strings or numbers.

Time只记录时间信息,不包含日期信息。

范围为-838:59:59 到 838:59:59, MySql 以HH:MM:SS格式化该数据,允许输入为字符串或者数字。



Year

A year in two-digit or four-digit format. The default is four-digit format. In four-digit format, the allowable values are 1901 to 2155, and 0000. In two-digit format, the allowable values are 70 to 69, representing years from 1970 to 2069. MySQL displays YEAR values in YYYY format, but allows you to assign values to YEAR columns using either strings or numbers. The YEAR type is unavailable prior to MySQL 3.22.

Year可以有2种表示方式,4位的和2位的。

默认情况是4位。其范围为1901-2155

2位的表述法只记录后2位 。其范围为1970-2069

允许以字符串或者数字的方式插入。



使用举例

import java.sql.Timestamp;
/**
 * 注册时间
 */
@TableField("create_date")
private Timestamp createDate;

/**
 * 最后登录时间
 */
@TableField("last_login")
private Timestamp lastLogin;
sysUser.setCreateDate(new Timestamp(System.currentTimeMillis()));
sysUser.setLastLogin(new Timestamp(System.currentTimeMillis()));



版权声明:本文为YangYF1997原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。