代码搜索:SqL

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

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

sql recordselect.sql

REM RecordSelect.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This block shows how to select into a record. DECLARE -- Define a record to match some fields in the students
www.eeworm.com/read/183260/9173704

sql forloop.sql

REM forloop.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This is an example of a FOR loop. BEGIN FOR v_Counter IN 1..50 LOOP INSERT INTO temp_table VALUES (v_C
www.eeworm.com/read/183260/9173706

sql goto.sql

REM goto.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates the GOTO statement. DECLARE v_Counter BINARY_INTEGER := 1; BEGIN LOOP INSERT INTO te
www.eeworm.com/read/183260/9173708

sql labeledblock.sql

REM LabeledBlock.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This is an example of a labeled block. DECLARE /* Declare variables to be used in this
www.eeworm.com/read/183260/9173712

sql null.sql

REM null.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates NULL as a statement. DECLARE v_TempVar NUMBER := 7; BEGIN IF v_TempVar < 5 THEN INSE
www.eeworm.com/read/183260/9173716

sql simple.sql

REM simple.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This is an example of a simple loop. DECLARE v_Counter BINARY_INTEGER := 1; BEGIN LOOP -- Insert a row int
www.eeworm.com/read/183260/9173718

sql anonymousblock.sql

REM AnonymousBlock.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This is an example of an anonymous block. DECLARE /* Declare variables to be used in this block. */ v_Num1
www.eeworm.com/read/183260/9173719

sql allthree.sql

REM allthree.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This block contains all three sections - declarative, executable, REM and exception. DECLARE /* Start of declara
www.eeworm.com/read/183260/9173721

sql if2.sql

REM if2.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM The IF statement in this block contains more than one statement REM per condition. DECLARE v_NumberSeats rooms.number
www.eeworm.com/read/183260/9173723

sql if1.sql

REM if1.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This block demonstrates an IF statement. DECLARE v_NumberSeats rooms.number_seats%TYPE; v_Comment VARCHAR2(35); BE