mysql进阶:存储过程当中的循环(WHILE DO and FOR LOOP)

WHILE DO drop procedure if exists p_while_do; create procedure p_while_do() begin declare i int; set i = 1; while i <= 10 do select concat('index : ', i);
相关文章
相关标签/搜索