mysql 語句 集錦 mysql常用語句集錦

2021-10-20 22:37:15 字數 540 閱讀 8298

mysql unix時間戳與日期的相互轉換

unix時間戳轉換為日期用函式: from_unixtime()

select from_unixtime(1156219870);

日期轉換為unix時間戳用函式: unix_timestamp()

select unix_timestamp(』2006-11-04 12:23:00′);

例:mysql查詢當天的記錄數:

$sql=」select * from message where date_format(from_unixtime(chattime),』%y-%m-%d』) = date_format(now(),』%y-%m-%d』) order by id desc」;

當然大家也可以選擇在php中進行轉換

unix時間戳轉換為日期用函式: date()

date('y-m-d h:i:s', 1156219870);

日期轉換為unix時間戳用函式:strtotime()

strtotime('2010-03-24 08:15:42');

mysql 時間語句 集錦

select from table name where time now interval 5 minute select current timestamp 輸出 2016 06 16 16 12 52 select now 輸出 2016 06 16 16 12 52 取當前時間的前一分鐘 s...

Mysql 常用SQL語句集錦

查詢時間,友好提示 乙個sql 返回多個總數 sql select count all,sql count case when status 1 then status end status 1 num,sql count case when status 2 then status end sta...

mysql常用語句集錦

自 http blog.tom.com zhiming4350 article 2141.html mysql常用語句 在xp下啟動mysql服務命令 net start mysql 關閉命令 net stop mysql mysql安裝目錄 d mysql 進入命令列輸入視窗 dos命令輸入,ro...