博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql如何查询某周的数据库_MySQL SQL语句查询本天、本周、本月的数据
阅读量:6469 次
发布时间:2019-06-23

本文共 596 字,大约阅读时间需要 1 分钟。

最近做毕业设计想做一个统计图,从数据库中获取数据,之前没有了解过MySQL数据库的date查询这方面的知识点,所以走了一些弯路,了解下面一些查询语句SQL就会方便很多:

/* 近一天的数据*/

select * from datetest where TO_DAYS(date) = TO_DAYS(now());

/* 近一月的数据 */

select SUM(id) from datetest where date_format(date,'%Y-%m')=date_format(now(),'%Y-%m')

/* 近一周的数据*/

SELECT * FROM datetest WHERE YEARWEEK(date_format(date,'%Y-%m-%d')) = YEARWEEK(now());

/* 近六个月的数据 */

select * from datetest where date between date_sub(now(),interval 6 month) and now();

/* 按天统计数据*/

select DATE_FORMAT(date,'%Y-%m-%d') day , sum(id) count from datetest where date >= '2017-04-07' group by day

知识学无止境,,,好好学技术……

转载地址:http://wpdko.baihongyu.com/

你可能感兴趣的文章
[LeetCode] Number of 1 Bits 位操作
查看>>
练习二:结对练习
查看>>
JSON中JObject和JArray,JValue序列化(Linq)
查看>>
杂七杂八
查看>>
Activity竟然有两个onCreate方法,可别用错了
查看>>
Linux经常使用命令(十六) - whereis
查看>>
Tomcat
查看>>
插件编译 版本问题
查看>>
android中TextView的阴影设置
查看>>
core dump相关
查看>>
MySQL如何导出带日期格式的文件
查看>>
Linux五种IO模型
查看>>
Bootstrap技术: 模式对话框的使用
查看>>
小知识,用myeclipes找jar
查看>>
[LintCode] Longest Substring Without Repeating Characters
查看>>
in-list expansion
查看>>
设计原则(四):接口隔离原则
查看>>
基于react的滑动图片验证码组件
查看>>
iOS快速清除全部的消息推送
查看>>
java单例模式深度解析
查看>>