mysql 无法精确到毫秒问题

create table PL_TEST_A
(
    A_key VARCHAR(100) not null,
	A_filed_1 VARCHAR(100) not null,
	A_filed_2 VARCHAR(100) not null,
	LMT_A TIMESTAMP(3) not null,
	primary key (A_key)
)

上述语句无法执行,时间戳不能指定毫秒,看了下 mysql 版本是 5.5.6.

于是查看了相关资料,发现是需要 5.6.4 or later 才行。

You need to be at MySQL version 5.6.4 or later to declare columns with fractional-second time datatypes. Not sure you have the right version? Try SELECT NOW(3). If you get an error, you don't have the right version.

For example, DATETIME(3) will give you millisecond resolution in your timestamps, and TIMESTAMP(6) will give you microsecond resolution on a *nix-style timestamp.

具体参考:https://stackoverflow.com/questions/26299149/timestamp-with-a-millisecond-precision-how-to-save-them-in-mysql

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值