在 MySQL 中,我们如何使用带有格式字符串的 FROM_UNIXTIME() 函数?

数据库数据库 2023-08-31 03:10:48 856
摘要: ...

在 MySQL 中,我们如何使用带有格式字符串的 FROM_UNIXTIME() 函数?

mysql> Select FROM_UNIXTIME(1555033470 '%Y %M %D')AS 'Formatted Output'; +------------------+ | Formatted Output | +------------------+ | 2019 April 12th | +------------------+ 1 row in set (0.00 sec)

在上面的查询中,它仅使用日期格式字符串。

mysql> Select FROM_UNIXTIME(1555033470 '%h:%i:%s')AS 'Formatted Output';
+------------------+
| Formatted Output |
+------------------+
| 07:14:30         |
+------------------+
1 row in set (0.00 sec)

在上面的查询中,它仅使用时间格式字符串。

mysql> Select FROM_UNIXTIME(1555033470, '%Y %M %D %h:%i:%s')AS 'Formatted Output';
+--------------------------+
| Formatted Output         |
+--------------------------+
| 2019 April 12th 07:14:30 |
+--------------------------+
1 row in set (0.00 sec)

在上面的查询中,它同时使用日期和时间格式字符串。

以上就是在 MySQL 中,我们如何使用带有格式字符串的 FROM_UNIXTIME() 函数?的详细内容,更多请关注其它相关文章!