mysql 存储过程的嵌套 是顺序执行还是乱序执行?
黄舟
黄舟 2017-04-17 15:32:38
0
0
365

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;

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

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(0)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template