Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE,1175tried
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;
ENDcall sp_store_insert(90);
3 解决办法
本站文章为和通数据库网友分享或者投稿,欢迎任何形式的转载,但请务必注明出处.
同时文章内容如有侵犯了您的权益,请联系QQ:970679559,我们会在尽快处理。