1.MySQL中查询某年某月的数据
测试数据如下; ?
1.1查询2018年的数据:
select * from day_rate where year(date)='2018'
?
1.2查询2月份的数据:
select * from day_rate where month(date)='02'
?
1.3查询2019年2月份的数据:
select * from day_rate where year(date)='2019' and month(date)='02'
?
1.4查询年初第32天的数据:
select * from day_rate where dayofyear(date)='32'
MySQL中查询某年某月的数据
?
2.日期进行范围查询时不能超出某月的最大日期
好像是mysql8,使用between…and…查询时,当查询的右边界为2021-2-31时,超出了实际范围(因为2月不可能有31天),所以无法进行查询。
例如:
select * from t_ordersetting where orderDate between '2021-09-01' and '2021-09-31';
这个方法不行,因为9月没有31号,超出了9月的最大日期,所以查询错误。 ? 解决方法: 方法一(已经过验证,可行): 使用 select * from t_ordersetting where year(orderDate)=#{year} and month(orderDate)=#{month}; 查询某年某月的数据,如下:
<select id="getOrderSettingByMonth" parameterType="map" resultType="com.itheima.pojo.OrderSetting">
select * from t_ordersetting where year(orderDate)=#{year} and month(orderDate)=#{month};
</select>
方法二(查看评论得知,没验证,不知是否可行): 使用:SELECT * FROM t_ordersetting WHERE orderDate BETWEEN STR_TO_DATE('2021-04-1','%Y-%m-%d') AND STR_TO_DATE('2021-04-31','%Y-%m-%d')
MYsql 8数据库select * from t_ordersetting where orderDate between ‘2020-2-1‘ and ‘2020-2-31‘语句竟然不能用
|