mysql 按年月查询
Posted xuzhankun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 按年月查询相关的知识,希望对你有一定的参考价值。
查询2017的数据:select * from table where year(column)=‘2017‘;
查找月份为12的数据:select * from table where month(column)=‘12‘;
查找天数为本年第二天的数据:select * from table where dayofyear(column)=‘2‘;
year,month,dayofyear是mysql的函数,分别是取得年,月,和当前时间在本年是第几天的3个函数
查询当月数据:select * from table where date_format(column,‘%Y-%m‘)=date_format(now(),‘%Y-%m‘)
以上是关于mysql 按年月查询的主要内容,如果未能解决你的问题,请参考以下文章