如何在 MySQL 中将时间戳转换为日期时间?

How to convert timestamp to datetime in MySQL?(如何在 MySQL 中将时间戳转换为日期时间?)
本文介绍了如何在 MySQL 中将时间戳转换为日期时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 MySQL 中如何将 1300464000 转换为 2011-03-18 16:00:00?

How to convert 1300464000 to 2011-03-18 16:00:00 in MySQL?

推荐答案

使用 FROM_UNIXTIME() MySQL 中的函数

Use the FROM_UNIXTIME() function in MySQL

请记住,如果您使用的框架以毫秒为单位存储它(例如 Java 的时间戳),您必须除以 1000 以获得正确的 Unix 时间(以秒为单位).

Remember that if you are using a framework that stores it in milliseconds (for example Java's timestamp) you have to divide by 1000 to obtain the right Unix time in seconds.

这篇关于如何在 MySQL 中将时间戳转换为日期时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)