发布网友 发布时间:2022-04-30 21:53
共2个回答
懂视网 时间:2022-05-01 02:14
python3 #xiaodeng #基于py3和pymysql查询某时间段的数据 import pymysql conn=pymysql.connect(user=‘root‘,passwd=‘root‘,host=‘localhost‘,db=‘test.db‘) cur=conn.cursor() ‘‘‘【核心语句】‘‘‘ cur.execute("select grage from 表名 where 时间字段 between ‘开始时间‘ and ‘结束时间‘") #eg: #select grage from 表名 where 时间字段 between ‘2010-7-12 11:18:54‘ and ‘2010-7-12 11:22:20‘ #用data接收需要返回的数据 data=cur.fethall() #数据提取工作 for name,age in data: print(name,age) conn.close() cur.close()
基于py3和pymysql查询某时间段的数据
标签:
热心网友 时间:2022-04-30 23:22
select date_format(atime,'%Y-%m-%d %H') as hour,count(*) as Count from z_alarm_false where atime >= '2019-1-25 00:00:00' and atime <= '2019-1-26 00:00:00' group by date_format(atime,'%Y-%m-%d %H');