> 데이터 베이스 > MySQL 튜토리얼 > mysql查询时间戳和日期的转换_MySQL

mysql查询时间戳和日期的转换_MySQL

WBOY
풀어 주다: 2016-06-01 13:28:39
원래의
1295명이 탐색했습니다.

bitsCN.com

mysql查询时间戳和日期的转换

 

在数据库的使用中,经常需要按指定日期来查询记录,以便于统计,而在数据库中,有很多存储的是时间戳,

 

也有的直接存日期,查询的时候可能不是那么好弄.

 

mysql提供了两个函数:

 

          from_unixtime(time_stamp)   ->  将时间戳转换为日期

 

          unix_timestamp(date)             ->  将指定的日期或者日期字符串转换为时间戳

 

 

如:   from_unixtime(time_stamp)

 

[plain] select from_unixtime(1382544000);  +---------------------------+  | from_unixtime(1382544000) |  +---------------------------+  | 2013-10-24 00:00:00       |  +---------------------------+  如: unix_timestamp(date) [plain] select unix_timestamp(date(&#39;2013-10-24&#39;));  +------------------------------------+  | unix_timestamp(date(&#39;2013-10-24&#39;)) |  +------------------------------------+  |                         1382544000 |  +------------------------------------+  如果要查询当天的订单的记录:[plain] select count(*) from b_order Where  date_format(from_unixtime(create_time),&#39;%Y-%m-%d&#39;) = date_format(now(),&#39;%Y-%m-%d&#39;)  也可以这样:[plain] select count(*) from b_order Where  create_time >= unix_timestamp(&#39;2013-10-24 00:00:00&#39;) and create_time <=  unix_timestamp(&#39;2013-10-24 23:59:59&#39;) ;  
로그인 후 복사

 


bitsCN.com
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿