Home

Published

- 1 min read

error code 1175 mysql fix

img of error code 1175 mysql fix

The solution for this is noted below

error code 1175 mysql fix

Solution

   -- disable safe update mode
SET SQL_SAFE_UPDATES=0;
-- execute update statement
UPDATE table SET column='value';
-- enable safe update mode
SET SQL_SAFE_UPDATES=1;

Try other methods by searching on the site. That is if this doesn’t work