在sqlite中怎么统计本周本月数据

前端之家收集整理的这篇文章主要介绍了在sqlite中怎么统计本周本月数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

sqlite中有个表UserConsume,其中有一列rowTime,该列类型是datetime,怎么统计该表本月和本周的数据?sql如下:

--本月
select *
from UserConsume
where rowTime between datetime('now','start of month','+1 second') and 
datetime('now','+1 month','-1 second') 


--本周
select *
from UserConsume
where rowTime between datetime(date(datetime('now',strftime('-%w day','now'))),'+1 second') 
and datetime(date(datetime('now',(6 - strftime('%w day','now'))||' day','1 day')),'-1 second') 

主要用的函数有datetime和strftime,具体用法,请参阅官网:http://www.sqlite.org/lang_datefunc.html

sql,请参阅:http://sqlite.org/lang.html

数据类型,请参阅:http://sqlite.org/datatype3.html

原文链接:https://www.f2er.com/sqlite/202594.html

猜你在找的Sqlite相关文章