xxxxxxxxxx
sqlite3.OperationalError: no such column: order_order.customer_id
xxxxxxxxxx
'''
If you add a column to a table after you have initialized the model, you have to delete the database and initialize the model again.
'''
xxxxxxxxxx
cursor.execute("SELECT * FROM students WHERE ID=? AND name=? AND age=?", (123, "Steve", 17))