如何在 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 中将时间戳转换为日期时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)