I’m following this tutorial at minute 11:05
sqlite3 tutorial
and am getting an error
import sqlite3
from employee import Employee
conn = sqlite3.connect('employee.db')
c = conn.cursor()
c.execute("SELECT + FROM employees WHERE last='Schafer'")
sqlite3.OperationalError: near "FROM": syntax error
I don’t understand why.