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

mysqlmysqli database

假设我们想要以特定格式输出 FROM_UNIXIME() 函数,那么我们可以在其中使用日期格式字符串或时间格式字符串或两者。以下是在 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)

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


相关文章