I would like to copy a row in a database and change one value.
I think that this is close to what I am supposed to do.
self.cursor.execute("INSERT INTO DatabaseName (C1, C2, C3, C4, C5) SELECT (?, C2, C3, C4, C5) FROM DatabaseName WHERE C1=?", [newC1Value, copiedC1Value])
Although, I get an operational error:
sqlite3.OperationalError: near ",": syntax error
Thank you for any suggestions!