当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
声明变量.htm 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
yequanrui 提交于 2017-04-03 17:53 . add files
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>声明变量</title>
<meta name="GENERATOR" content="WinCHM">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
body{font-family: '微软雅黑','sans-serif';}
</style>
</head>
<body>
<H4>变量标识符不区分大小写,必须先定义后使用</H4>
<UL>
<LI>用数据库字段的数据类型来定义变量,也支持数据库没有的类型<BR>
<FONT color=#0000ff>
declare<BR>
&nbsp; eno number(4);<BR>
&nbsp; enm varchar(20);<BR>
&nbsp; edate date;<BR>
&nbsp; esal number(7,2);<BR>
&nbsp; &nbsp; b boolean := true;<BR>
begin<BR>
&nbsp;...<BR><BR>
</FONT>
<LI>用属性来定义变量<BR>
<FONT color=#0000ff>
declare<BR>
--和emp表中的empno字段类型一样<BR>
&nbsp; eno emp.empno%type;<BR>
--和emp表中的ename字段类型一样<BR>
&nbsp; enm emp.ename%type;<BR>
--和emp表的行记录类型一样<BR>
&nbsp; erow emp%rowtype;<BR>
begin<BR>
&nbsp;...<BR>
</FONT>
</LI>
</UL>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化