Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
id、pagenr、x1、y1など、4つの列を持つsqliteテーブルがあります。y1 列の値をリスト/タプルとして取得する必要がありますが、pagenr と x1 に特定の値がある行からのみ取得します。大いに感謝します。注意: 私は python 2.6 を使用しています。
sqlite3 モジュールを使用するこのコードは、クエリからの結果の行をoutputリストにフェッチする必要があります。
output
conn = sqlite3.connect('database.db') c = conn.cursor() c.execute('select y1 from table where pagenr=? and x1=?', (pagenr_value, x1_value)) output = c.fetchall()