Skip to content
Advertisement

Updating Multiple Columns in sqlite3

I am wanting to update multiple columns in my ‘Class’ Table in sqlite. I do not know how to do this so I approached the same syntax as an ‘INSERT’ query however, I seem to be having the following syntax error: sqlite3.OperationalError: near "VALUES": syntax error

The line I am currently having issues is

I am just wondering how to create a query to update multiple columns in my ‘Class’ table. Here is my current code:

Advertisement

Answer

The syntax for an UPDATE statement is (for SQLite 3.15.0+):

or in standard SQL:

but I think that you also need a WHERE clause, because this will update all the rows of the table.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement