首页 > 代码库 > Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE
Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE
1 错误描写叙述
19:15:34 call sp_store_insert(90) 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.093 sec
2 错误原因
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_store_insert`(in score int) BEGIN create temporary table if not exists temp_student( id int(6) primary key, name varchar(20) ); delete from temp_student; insert into temp_student(id,name) select t.id,t.name from t_computer_stu t where t.score > score; END
call sp_store_insert(90);
3 解决的方法
Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。