进击的大菜鸟 2021-03-18 16:02 采纳率: 83.3%
浏览 36
已结题

mysql存储过程优化

小白,写了个存储过程,麻烦各位大佬该看一下,能不能优化下,1000条数据,查询了两秒

CREATE PROCEDURE `getAllChildren`(pid bigint(20),typeCode varchar(20))
begin
declare last_count int;
declare last_level int;
set last_level = 0;
drop table if exists temp;
drop table if exists result;
create temporary table temp (id bigint(20) primary key, parent_id bigint(20),type varchar(20),name varchar(50), level int);
create temporary table result (id bigint(20) primary key, parent_id bigint(20), type varchar(20),name varchar(50), level int);
insert into temp(id, parent_id, type,name, level) select id, parent_res_id, res_type,res_name, last_level from pue_res_manage where parent_res_id = pid and delete_state = '0' ;
while exists (select * from temp) do
		insert into result select * from temp;
    delete from temp;
    insert into temp(id, parent_id,type,name, level) 
    select id, parent_res_id,res_type,res_name, last_level + 1
    from pue_res_manage 
    where parent_res_id in (select id from result where level = last_level) and delete_state = '0';
    set last_level = last_level + 1;
end while;
if typeCode is null then
	select id from result;
else
	select id from result where type  = typeCode;
end if;
end
  • 写回答

2条回答 默认 最新

  • 哆啦A梦丶幻想 2021-03-18 18:04
    关注

    看看字段能不能使用枚举?

    然后创建表如果只是临时用的话,看能不能创建临时表

     

    存储过程如果只是临时用的话可以。业务代码中不能用的呦

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 2月9日
  • 已采纳回答 2月9日

悬赏问题

  • ¥15 PointNet++的onnx模型只能使用一次
  • ¥20 西南科技大学数字信号处理
  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。