cursor.execute("SELECT [Employees].Employee_Name, [Salerys].Salery")
cursor.execute("FROM Employees")
cursor.execute("WHERE (([Employee_Name]="John"));")
cursor.execute("SELECT \[Employees\].Employee_Name, \[Salerys\].Salery")
pyodbc.Error: ('07002', '\[07002\] \[Microsoft\]\[ODBC Microsoft Access Driver\] Too few parameters. Expected 2. (-3010) (SQLExecDirectW)')
Started to use this package since couple of days ago. I want to know how to fix this error & why this error came.