I have an SQL query that I cannot execute, this error appears:
To disable safe mode, switch the option in the settings β SQL Editor β Query Editor and reconnect. You are using safe update mode, and you tried updating the table without WHERE, which uses the KEY column
My request:
update customfieldvalue
set stringvalue="****"
where customfieldvalue.customfield IN
(select customfield.id
from customfield
where customfield.cfname="Resoltion"
and customfieldvalue.issue=12345);
how can i fix this problem because in my production environment i cannot do this manipulation? PS: I am using mysql
source
share