存储过程中一个简单的select count问题
时间:2011-11-14
来源:互联网
大家好,问一个简单的select count 问题。做了一个资源有限的ID ,如果设置id被用设置状态为1,未用的id设置状态为 0
更新记录前先判断是否有空闲的id数目 ,如果数目大于0,就更新,如果等于0,就。。。
create or replace procedure test(total out number,id...)
is
...
begin
select count(*) as total from table_name where status=0;
if total>0 then
....
end if;
if total=0 then
...
end if;
end;
/
貌似select count(*) as total from table_name where status=0;有问题,我想把状态为1的记录条数赋给total,不知道有什么方法?请大家多多指导
更新记录前先判断是否有空闲的id数目 ,如果数目大于0,就更新,如果等于0,就。。。
create or replace procedure test(total out number,id...)
is
...
begin
select count(*) as total from table_name where status=0;
if total>0 then
....
end if;
if total=0 then
...
end if;
end;
/
貌似select count(*) as total from table_name where status=0;有问题,我想把状态为1的记录条数赋给total,不知道有什么方法?请大家多多指导
作者: qiuxinyidian 发布时间: 2011-11-14
要用into
select count(*) into total from table_name where status=0;
select count(*) into total from table_name where status=0;
作者: huangdh12 发布时间: 2011-11-14
在存储过程中要使用select into的方式把SQL得到的值赋给变量
SQL code
SQL code
set serverout on declare v_count number; begin select count(1) into v_count from dual; dbms_output.put_line(v_count); --如果是动态SQL execute immediate 'select count(1) from dual' into v_count; dbms_output.put_line(v_count); end;
作者: tx2730 发布时间: 2011-11-14
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28