原文:
sql點滴42—mysql中的時間轉換
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');
sql點滴42 mysql中的時間轉換
unix時間戳轉換為日期用函式 from unixtime select from unixtime 1156219870 日期轉換為unix時間戳用函式 unix timestamp select unix timestamp 2006 11 04 12 23 00 例 mysql查詢當天的記錄數...
sql點滴42 mysql中的時間轉換
unix時間戳轉換為日期用函式 from unixtime select from unixtime 1156219870 日期轉換為unix時間戳用函式 unix timestamp select unix timestamp 2006 11 04 12 23 00 例 mysql查詢當天的記錄數...
sql點滴 mysql中查詢表的資訊
mysql中查詢表的資訊 查詢mysql表字段資訊的sql語句 show databases 列出 mysql server 資料庫。show tables from db name 列出資料庫資料表。show create tables tbl name 匯出資料表結構。show table st...