StruFu-Bot/Jan/dbtest_sql.py

17 lines
216 B
Python
Raw Normal View History

2020-12-14 13:10:16 +01:00
import sqlite3
con = sqlite3.connect("../test1.db")
c = con.cursor()
sql = """select f.text, a.text
from frage f
join antwort a on f.id = a.frage_id"""
c.execute(sql)
select = c.fetchall()
print(sql)
2020-12-14 13:10:16 +01:00
c.close()