Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个小型应用程序,其中正在 以这种格式获取数据作为日期yyyy:MM:dd HH:mm:ss.MM,但在我的数据库中,日期字段已存储为这种格式yyyy:MM:dd HH:mm:ss,任何人都可以告诉我为什么将MM作为额外的东西
yyyy:MM:dd HH:mm:ss.MM
yyyy:MM:dd HH:mm:ss
MM是 Datetime 数据类型的微秒部分。
MM
微秒是在 Mysql 版本 5.6.4 中引入的。
如果在表创建期间将数据类型指定为,则引入微秒部分
DATETIME(fractional_part)
见Mysql 文档
您应该将日期字段定义为 DATETIME(2) 以获取微秒