摘要:
MySQL 生成日期表 阅读全文
posted @ 2019-09-25 11:58
alittlesmile
阅读(501)
评论(0)
推荐(0)
摘要:
-- MySQL中的三中循环 while 、 loop 、repeat 求 1-n 的和 -- 第一种 while 循环 -- 求 1-n 的和 /* while循环语法: while 条件 DO 循环体; end while; */ create procedure add_calendar(a int) begin declare i int default 1; while i<=a DO 阅读全文
posted @ 2019-09-25 11:48
alittlesmile
阅读(730)
评论(0)
推荐(0)