函式:now()
注釋:等同於sqlserver中的getdate()
格式:yyyy-mm-dd hh:mm:ss
函式:sysdate()
注釋:跟now()
類似,不同之處在於:now()
在執行開始時值就得到了,sysdate()
在函式執行時動態得到值。
格式:yyyy-mm-dd hh:mm:ss
函式:curdate()
注釋:等同於sqlserver中的current_date()
,current_date
。
格式:yyyy-mm-dd
函式:curtime()
注釋:等同於sqlserver中的current_time(),current_time
。
格式:hh:mm:ss
函式:utc_date(), utc_time(), utc_timestamp()
注釋:因為我國位於東八時區,所以本地時間 = utc 時間 + 8 小時。
格式:yyyy-mm-dd
,hh:mm:ss
,yyyy-mm-dd hh:mm:ss
mysql獲取時間
select date sub now interval 1 month 上個月今天的當前時間 select unix timestamp date sub now interval 1 month 上個月今天的當前時間 時間戳 select date sub date sub date forma...
mysql 獲取系統時間
mysql select now now 2011 06 11 12 00 54 1 row in set 0.00 sec mysql select sysdate sysdate 2011 06 11 12 00 54 1 row in set 0.00 sec mysql select cur...
MySql獲取系統時間
mysql獲取系統當前時間的函式 環境 mysql server 5.1 問題 mysql獲取系統當前時間的函式 解決 now 函式以 yyyy mm dd hh mm ss 返回當前的日期時間,可以直接存到datetime欄位中。curdate 以 yyyy mm dd 的格式返回今天的日期,可以...