📄 3gl_4gl.sql
字号:
REM 3gl_4gl.sql
REM Chapter 1, Oracle9i PL/SQL Programming by Scott Urman
REM This block shows both 3GL and 4GL statements.
DECLARE
/* Declare variables which will be used in SQL statements */
v_NewMajor VARCHAR2(10) := 'History';
v_FirstName VARCHAR2(10) := 'Scott';
v_LastName VARCHAR2(10) := 'Urman';
BEGIN
/* Update the students table. */
UPDATE students
SET major = v_NewMajor
WHERE first_name = v_FirstName
AND last_name = v_LastName;
/* Check to see if the record was found. If not, then we need
to insert this record. */
IF SQL%NOTFOUND THEN
INSERT INTO students (ID, first_name, last_name, major)
VALUES (student_sequence.NEXTVAL, v_FirstName, v_LastName,
v_NewMajor);
END IF;
END;
/
ROLLBACK;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -