to_unix_timestamp

to_unix_timestamp

to_unix_timestamp 介绍

to_unix_timestamp(timeExp[, fmt]) - 返回给定时间的UNIX时间戳。

参数:

  • timeExp - 一个日期/时间戳或字符串,将其作为UNIX时间戳返回。
  • fmt - 要遵循的日期/时间格式模式。如果timeExp不是字符串,则忽略此参数。默认值是"yyyy-MM-dd HH:mm:ss"。请参阅日期时间模式以获取有效的日期和时间格式模式。

Examples:

> SELECT to_unix_timestamp('2016-04-08', 'yyyy-MM-dd');
 1460098800

Since: 1.6.0