Let's say I make a table like so:
db.execute("""
CREATE TABLE IF NOT EXISTS todos
(id INTEGER PRIMARY KEY AUTOINCREMENT,
job TEXT,
duration TEXT,
category TEXT,
expected_completion TEXT)
""")
How would I get all of the values for the 'job' column? I'm aware that I could loop through each entry or use the pandas library, but I'm curious to know if there's a standard way to do this via SQLite.