MySQL error code: 1175 during UPDATE in MySQL Workbench

I found the answer. The problem was that I have to precede the table name with the schema name. i.e, the command should be:

UPDATE schemaname.tablename SET columnname=1;

Thanks all.

Leave a Comment