博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle 自定义结构(Record)
阅读量:4953 次
发布时间:2019-06-12

本文共 655 字,大约阅读时间需要 2 分钟。

1、概念及使用

     类似于C中的自定义类型,可用于定义某表的字段集合。 

       定义格式  type recordName is Record(

                         字段名称 字段类型,
                         字段名称 字段类型
                     );

       使用步骤: 1)声明结构体   2)定义结构体变量 3)使用。

2、例:

--在匿名块中使用record,也可定义在过程、函数、包中。 declare --声明结构体     type re_stu is record(         rname student.name%type,  --中间用逗号分开         rage  student.age%type    --最后一个字段没有符号     );  --以分号结束     --定义结构体变量     rw_stu re_stu; cursor c_stu is select name,age from student; begin open c_stu;     loop fetch c_stu into rw_stu;  --使用结构体变量         exit when c_stu%notfound;         dbms_output.put_line('姓名='||rw_stu.rname||' 年龄='||rw_stu.rage); end loop; close c_stu;   end;

转载于:https://www.cnblogs.com/lovemoon714/archive/2012/02/29/2373780.html

你可能感兴趣的文章
迷茫的Java程序员
查看>>
修改环境变量
查看>>
boost 库的安装
查看>>
使用nc命令传输文件和文件夹
查看>>
python 文件操作
查看>>
web开发中的层次结构设计
查看>>
Android之Adapter用法总结(转)
查看>>
Struts2漏洞渗透笔记
查看>>
Java SE ---算术运算符
查看>>
QQ旋风自动关闭解决方法
查看>>
Training—Managing Device Awake State
查看>>
RailsCasts中文版,#9 Filtering Sensitive Logs 遮盖日志中记录的敏感信息
查看>>
JMeter(十三)-代理服务器录制脚本
查看>>
Ultra-fast ASP.NET: Build Ultra-Fast and Ultra-Scalable Websites Using ASP.NET and SQL Server
查看>>
[UI界面]-UIImage的拉伸
查看>>
大项目之网上书城(九)——订单Demo
查看>>
解决-bash: fork: retry: Resource temporarily unavailable错误
查看>>
PowerDesigner中创建Oracle表全过程记录
查看>>
React---简单实现表单点击提交插入、删除操作
查看>>
倡导一种代码行数统计标准
查看>>