在 MySQL 中,如何将 FROM_UNIXTIME() 函数与格式字符串一起使用?
假设我们希望 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)
在上面的查询中,它同时使用了日期和时间格式字符串。
广告