假设如果我们想要 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)
在上面的查询中,它同时使用日期和时间格式字符串。
以上是在 MySQL 中,我们如何使用带有格式字符串的 FROM_UNIXTIME() 函数?的详细内容。更多信息请关注PHP中文网其他相关文章!