Please tell me why error is coming in my sql code
create table stu (id int primary key, name varchar(50), age int not null, subject varchar(50)); insert into stu values(1, "Meenakshi", 45, "Biology"); insert into stu values(2, "Roma", 32, "English"); insert into stu values(3, "Katherine", 26, "GK"); insert into stu values(5, "Shravya", 39, "Maths"); insert into stu values(6, "Jyoti", 41, "Geography"); insert into stu values(7, "Jyoti", 51, "History"); delete from stu where age=51; select * from stu I am getting this error-- 0 27 23:46:19 delete from stu where age=51 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 Please help me rectify the error.