Documentation Home
MySQL 8.3 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

30.4.5.6 format_time() 函数

Note

从 MySQL 8.0.16 开始,format_time() 已弃用,并将在未来 MySQL 版本中删除。使用它的应用程序应该迁移到使用内置的 FORMAT_PICO_TIME() 函数。见 第 14.21 节,“性能模式函数”

将性能模式延迟或等待时间(以皮秒为单位)转换为人类可读格式,并返回一个字符串,包括值和单位指示符。根据值的大小,单位部分是 ps(皮秒)、ns(纳秒)、us(微秒)、ms(毫秒)、s(秒)、m(分钟)、h(小时)、d(天)或 w(周)。

参数
  • picoseconds TEXT:要格式化的皮秒值。

返回值

一个 TEXT 值。

示例
mysql> SELECT sys.format_time(3501), sys.format_time(188732396662000);
+-----------------------+----------------------------------+
| sys.format_time(3501) | sys.format_time(188732396662000) |
+-----------------------+----------------------------------+
| 3.50 ns               | 3.15 m                           |
+-----------------------+----------------------------------+