찾다

 >  Q&A  >  본문

mysql 存储过程的嵌套 是顺序执行还是乱序执行?

mysql 存储过程的嵌套 是顺序执行还是乱序执行?

例如:

CREATE DEFINER=`root`@`localhost` PROCEDURE `fun1`(in var1 integer)
begin 
call autoCountItemSold();
call autoBinary();
select * from orders_father order by uid asc;
end

其中的:

call autoCountItemSold();
call autoBinary();
select * from orders_father order by uid asc;

三句语句是顺序执行的吗?如果遇到首个语句执行时间过长,会发生什么情况...

黄舟黄舟2767일 전366

모든 응답(0)나는 대답할 것이다

답장 없음
  • 취소회신하다