create procedure sp_sum(out rows int) -- 创建存储过程 定义rows为int类型的输出
-> begin -- 语法
-> declare sno char -- 申明 sno 变量 为char类型
-> declare found boolean defalut ture -- 申明 found 变量 boolean类型 默认为true
-> declare cur cursor for -- 这个和下面的一行 为一句 申明游标 为查询 tb_student表的 NO字段
-> select No from tb_student
-> declare continue handler for not found -- 如果没有查询到数据 (3行连读)
-> set found = false -- 设置 found 和rows的值
-> set rows=0
-> open cur -- 排除掉上面的情况 打开游标
-> fetch cur into sno -- fetch into 为游标遍历方式 类似于 while 循环
-> while found do -- 下面4句 为 循环语句 就是直到找不到 停止循环 把当前的行数赋予遍历rows
-> set rows=rows
-> fetch cur into sno
-> end while
-> close cur -- 关闭游标
ps:select COUNT(*) from tb_student直接赋值给 rows 不就完事了
不知道你写这个存储过程有啥子意义 就算No不为主键 可以加where条件三
不好意思半年了才看见。。。-- Add comments to the table
comment on table tablename
is 'xxx'
-- Add comments to the columns
comment on column tablename.columnname
is 'xxx'
上面是正常的对表和表字段添加注释的语句
comment on是个ddl语句,所以在过程里面也是需要加上execute immediate '
comment on column tablename.columnname
is ''xxx'''
你知道怎么在wps文档中添加标注吗?下面我就为你介绍wps文档如何添加标注的 方法 啦!
wps文档添加标注的方法 :
1)光标定位到要插入脚注的位置,然后单击“引用”选项卡中的“插入脚注/尾注”。
(2)打开“脚注和尾注”对话框,选中“脚注”,设置好格式,然后单击“插入”。
(3)输入脚注内容,效果如下图所示。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)