使用 MySQL 将 Unix 时间戳转换为人类可读的日期

2021-11-20 00:00:00 mysql unix-timestamp

是否有可用于将 Unix 时间戳转换为人类可读日期的 MySQL 函数?我有一个字段用于保存 Unix 时间,现在我想为人类可读的日期添加另一个字段.

Is there a MySQL function which can be used to convert a Unix timestamp into a human readable date? I have one field where I save Unix times and now I want to add another field for human readable dates.

推荐答案

使用 FROM_UNIXTIME():

SELECT
  FROM_UNIXTIME(timestamp) 
FROM 
  your_table;

另见:MySQLFROM_UNIXTIME() 上的文档.

See also: MySQL documentation on FROM_UNIXTIME().

相关文章