python中sqlite查询select
发布网友
发布时间:2022-04-27 07:11
我来回答
共1个回答
热心网友
时间:2022-04-07 23:34
# -*- coding: utf-8 -*-
import sqlite3
# 连接数据库
con = sqlite3.connect("cpu.db")
cur = con.cursor()
name = 'RPi.CPU'
# 查询记录总数
cur.execute("select count(*) from temps where name=(?);", (name, ))
total = cur.fetchone()