代码搜索:SqL

找到约 10,000 项符合「SqL」的源代码

代码结果 10,000
www.eeworm.com/read/183260/9173894

sql tabassign.sql

REM tabAssign.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates legal and illegal table assignments. DECLARE TYPE NumbersTab IS TABLE OF NUMBER; v_Num
www.eeworm.com/read/183260/9173895

sql nonsequential.sql

REM nonSequential.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This file shows the behavior of storing and retreiving a REM nested table with non-sequential keys. DROP TABLE
www.eeworm.com/read/183260/9173896

sql 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 number
www.eeworm.com/read/183260/9173897

sql tabrecord.sql

REM tabRecord.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block demonstrates an index-by table of records. DECLARE TYPE StudentTab IS TABLE OF students%ROWTYPE
www.eeworm.com/read/183260/9173899

sql count.sql

REM count.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block demonstrates the COUNT collection method. DECLARE v_NestedTable NumTab := NumTab(1, 2, 3); v_Varray Nu
www.eeworm.com/read/183260/9173900

sql exists.sql

REM exists.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block demonstrates the EXISTS method. DECLARE v_NestedTable NumTab := NumTab(-7, 14.3, 3.14159, NULL, 0); v
www.eeworm.com/read/183260/9173901

sql calllibrary.sql

REM callLibrary.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This file contains examples of calls to the Library package. BEGIN Library.PrintCheckedOut(1000); END; /
www.eeworm.com/read/183260/9173902

sql limit.sql

REM limit.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block shows the LIMIT collection operator. DECLARE v_Table NumTab := NumTab(1, 2, 3); v_Varray NumVar := Num
www.eeworm.com/read/183260/9173904

sql nulltable.sql

REM nullTable.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates a NULL table, and a table with a REM NULL element. DECLARE TYPE WordsTab IS TABLE OF VA
www.eeworm.com/read/183260/9173905

sql delete.sql

REM delete.sql REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates the DELETE collection method. set serveroutput on DECLARE -- Initialize a table to 10 ele