📄 varray.sql
字号:
REM varray.sql
REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman
REM This block illustrates some varray declarations.
DECLARE
-- Some valid varray types.
-- This is a list of numbers, each of which is constrained to
-- be not null.
TYPE NumberList IS VARRAY(10) OF NUMBER(3) NOT NULL;
-- A list of PL/SQL records.
TYPE StudentList IS VARRAY(100) OF students%ROWTYPE;
-- A list of objects.
TYPE ObjectList is VARRAY(25) OF MyObject;
BEGIN
NULL;
END;
/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -