mysql取得目前時間的方法:可以透過執行【select now();】語句來取得目前時間。也可以透過執行【select current_timestamp, current_timestamp();】語句來取得。
取得目前日期時間(date time)函數:now()
(推薦教學:mysql影片教學 )
mysql> select now(); +---------------------+ | now() | +---------------------+ | 2008-08-08 22:20:46 | +---------------------+
取得目前日期時間(date time)函數:sysdate()
sysdate() 日期時間函數跟now() 類似,不同之處在於:now() 在執行開始時值就得到了, sysdate() 在函數執行時動態得到值。看下面的範例就明白了:
mysql> select now(), sleep(3), now(); +---------------------+----------+---------------------+ | now() | sleep(3) | now() | +---------------------+----------+---------------------+ | 2008-08-08 22:28:21 | 0 | 2008-08-08 22:28:21 | +---------------------+----------+---------------------+
MySQL 取得目前時間戳記函數:current_timestamp, current_timestamp()
mysql> select current_timestamp, current_timestamp(); +---------------------+---------------------+ | current_timestamp | current_timestamp() | +---------------------+---------------------+ | 2008-08-09 23:22:24 | 2008-08-09 23:22:24 | +---------------------+---------------------+
相關推薦:mysql教學
以上是mysql怎麼取得目前時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!