0

我正在使用此代码从 sqlite 行中获取所有数据,但我只想检索最后 30 个条目。

import sqlite3
from matplotlib import pyplot
fig = pyplot.figure()

con = sqlite3.connect('growll.db')
con.text_factory = str
cur = con.cursor()
cur.execute("select temp from GrowLLDados")
ar=[r[0] for r in cur.fetchall()]
4

1 回答 1

1

就像是 "select temp from GrowLLDados ORDER BY id DESC LIMIT 30"

哪里id是自动递增计数器,或者至少意味着数字越大,条目越近...

于 2012-12-27T02:20:01.133 回答