特牛网址导航

mysql进阶:存储过程中的循环(WHILE DO and FOR LOOP)-CSDN博客

网友收藏
WHILE DOdrop 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);