Unexpected parameters (timestamp with time zone, varchar(19)) for function unix_timestamp
时间: 2024-05-20 18:13:45 浏览: 297
前端开源库-unexpected-function-equality
`unix_timestamp()` 函数不支持 `timestamp with time zone` 数据类型的参数。该函数只支持以下参数类型:
- 无参数
- `date`
- `datetime`
- `timestamp`
- `varchar`
- `char`
- `text`
如果要将 `timestamp with time zone` 类型的参数转换为 Unix 时间戳,可以使用 `UNIX_TIMESTAMP()` 函数。例如:`UNIX_TIMESTAMP('2022-01-01 00:00:00+08:00')` 将返回 `1640985600`,即表示 2022 年 1 月 1 日 0 点的 Unix 时间戳。
阅读全文