from_unixtime

from_unixtime

from_unixtime介绍

from_unixtime(unix_time[, fmt]) - 将 unix_time 转换为指定的 fmt 格式。

参数:

  • unix_time - 要转换为提供格式的 UNIX 时间戳。
  • fmt - 要遵循的日期/时间格式模式。请参阅日期时间模式以获取有效的日期和时间格式模式。如果省略,则使用 'yyyy-MM-dd HH:mm:ss' 模式。

Examples:

> SELECT from_unixtime(0, 'yyyy-MM-dd HH:mm:ss');
 1969-12-31 16:00:00
 
> SELECT from_unixtime(0);
 1969-12-31 16:00:00

Since: 1.5.0