mysql 按日期查询
在mysql中,比如你的表的时间字段是column2,并且column2的类型是timestamp
单日查询:
select * from TableName where column1=‘xxxx‘ and date(column2)=‘2015-05-29‘
日期范围查询:
select * from TableName where column1=‘xxxx‘ and date(column2) between ‘2015-02-03‘ and ‘2015-06-03‘
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。