SQLite is one of the fastest ways to set up a SQL-ready database.
Once you store data in an SQLite3 you can easily reuse it where you want.
Here is how to retrieve data entries from an SQLite3 Database.
Here is the code
First, we connect to the database
Second, we create our table and fill it up with dummy data
Third, we retrieve data
One entry
cur.execute("select * from revenues").fetchone()
All entries
cur.execute("select * from revenues").fetchall()
All entries that match the condition
cur.execute("select * from revenues where amount >= 14000").fetchall()
Here you are! You now know how to retrieve data from an SQLite3 Database.
You might be interested in