I know this is a repeated question and I've looked at all of them however I cant see what I'm doing wrong.
this is my sqlite3 code:
cursor.execute('''DELETE FROM dates WHERE (Date, Start, End) VALUES( ? , ? , ? );''',
(fulldaterem, starttimehour2, endtimehour2))
and get the error:
sqlite3.OperationalError: near ",": syntax error
where am I going wrong?
