假設如果我們想要 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中文網其他相關文章!