mssql

推荐列表 站点导航

当前位置:首页 > 数据库 > mssql >

sql 游标的使用—游标FOR循环小例子

来源:网络整理  作者:网络  发布时间:2020-12-13 03:13
游标for循环是在pl/sql块中使用游标最简单的方式,它简化了对游标的处理。当使用游标for循环时,oracle会隐含的打开...
姓名: TURNER , 工资: 1500

姓名: MARTIN , 工资: 1250


姓名: SCOTT , 工资: 2000
姓名: BLAKE , 工资: 2850
姓名: WARD , 工资: 1250

例子: 显示emp表所有雇员名及其工资:

end ;
cursor emp_cursor is select ename,sal from emp ;

anonymous block completed
姓名: ALLEN , 工资: 1600
姓名: MILLER , 工资: 2100

姓名: KING , 工资: 5000
姓名: JAMES , 工资: 950
for emp_record in emp_cursor loop
dbms_output.put_line('姓名: '||emp_record.ename||' , 工资: '||emp_record.sal);
end loop;
姓名: CLARK , 工资: 2450

declare
姓名: JONES , 工资: 3272.5
姓名: SMITH , 工资: 880
/
姓名: FORD , 工资: 3300

复制代码 代码如下:

begin
姓名: ADAMS , 工资: 1210

相关热词:

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!

本文地址: https://www.juheyunku.com/sql/mssql/3156.shtml

最新文章
sql server 关于设置null的一 sql server 关于设置null的一

时间:2020-12-28

详解SQL游标的用法 详解SQL游标的用法

时间:2020-12-27

vs code连接sql server数据库步 vs code连接sql server数据库步

时间:2020-12-27

图书管理系统的sqlserver数 图书管理系统的sqlserver数

时间:2020-12-25

详解SQL 通配符 详解SQL 通配符

时间:2020-12-25

sql四大排名函数之ROW_NUM sql四大排名函数之ROW_NUM

时间:2020-12-25

SQLServer数据库处于恢复挂 SQLServer数据库处于恢复挂

时间:2020-12-24

Win10 64位安装个人版SQL20 Win10 64位安装个人版SQL20

时间:2020-12-24

Copyright © www.juheyunku.com      关于 | 合作 | 声明 | 联系 | 更新 | 地图 | Tags

sql 游标的使用—游标FOR循环小例子

2020-12-13 编辑:网络

姓名: TURNER , 工资: 1500

姓名: MARTIN , 工资: 1250


姓名: SCOTT , 工资: 2000
姓名: BLAKE , 工资: 2850
姓名: WARD , 工资: 1250

例子: 显示emp表所有雇员名及其工资:

end ;
cursor emp_cursor is select ename,sal from emp ;

anonymous block completed
姓名: ALLEN , 工资: 1600
姓名: MILLER , 工资: 2100

姓名: KING , 工资: 5000
姓名: JAMES , 工资: 950
for emp_record in emp_cursor loop
dbms_output.put_line('姓名: '||emp_record.ename||' , 工资: '||emp_record.sal);
end loop;
姓名: CLARK , 工资: 2450

declare
姓名: JONES , 工资: 3272.5
姓名: SMITH , 工资: 880
/
姓名: FORD , 工资: 3300

复制代码 代码如下:

begin
姓名: ADAMS , 工资: 1210

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供学习参考!
本文地址为 https://www.juheyunku.com/sql/mssql/3156.shtml

相关文章

风云图片

推荐阅读

返回mssql频道首页