現有數據庫的表具有帶「int」數據類型的「dateline」列。它存儲時間戳。我如何從中提取日期。如何從時間戳中提取數據類型爲int的日期
Dateline (int)
_____________
1314182844
1298122381
1298122956
建議如何從下面的查詢中提取日期部分。
select * from TableName where Dateline between '2013-10-01' and '2013-10-31'
我試着用cast,dateformat,convert,但沒有給出想要的結果。
P.S.請注意數據類型存儲爲INTEGER ..
這可能會給你一個線索:[epoch time and MySQL query](http://stackoverflow.com/questions/7825739/epoch-time-and-mysql-query) – atomman
看看這篇文章:http:// stackoverflow.com/questions/6267564/convert-unix-timestamp-into-human-readable-date-using-mysql/6267625#6267625 – kmas