I have table dapartment_dup where I want to update a record when I execute the query it gives me an error
My query is
update department_dup
set dept_name = null
where dept_no = 'd010';
and the error is
21:17:21 update department_dup set dept_name = null where dept_no = 'd010' Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 0.000 sec
in the error message, it gives me the path but I can't understand where to reconnect?