代码搜索结果
找到约 10,000 项符合
G 的代码
10g_values_of.sql
SELECT employee_id FROM employee WHERE salary = 10000;
DECLARE
TYPE employee_aat IS TABLE OF employee.employee_id%TYPE
INDEX BY PLS_INTEGER;
l_employees employee_aat;
10g_forall.sql
DROP TABLE favorites;
CREATE TABLE favorites (
flavor VARCHAR2(100),
NAME VARCHAR2(100));
DECLARE
TYPE favorites_tt IS TABLE OF favorites%ROWTYPE
INDEX BY PLS_INTEGER;
T
10g_submultiset.sql
DECLARE
PROCEDURE bpl (val IN BOOLEAN, str IN VARCHAR2)
IS
BEGIN
IF val
THEN
DBMS_OUTPUT.put_line (str || '-TRUE');
ELSIF NOT val
THEN
DBMS_
10g_indices_of.sql
SELECT employee_id FROM employee WHERE salary = 10000;
DECLARE
TYPE employee_aat IS TABLE OF employee.employee_id%TYPE
INDEX BY PLS_INTEGER;
l_employees employee_aat;
10g_authors.pkg
CREATE OR REPLACE PACKAGE authors_pkg
IS
steven_authors strings_nt
:= strings_nt ('ROBIN HOBB'
, 'ROBERT HARRIS'
, 'DAVID BRIN'
10g_favorites.pkg
CREATE OR REPLACE PACKAGE authors_pkg
IS
steven_authors strings_nt
:= strings_nt ('ROBIN HOBB'
, 'ROBERT HARRIS'
, 'DAVID BRIN'
10g_setops.sql
DECLARE
TYPE nested_type IS TABLE OF NUMBER;
nt1 nested_type := nested_type(1,2,3);
nt2 nested_type := nested_type(3,2,1);
nt3 nested_type := nested_type(2,3,1,3);
nt4 nested_
10g_union.sql
DECLARE
our_authors strings_nt := strings_nt();
BEGIN
our_authors := authors_pkg.steven_authors
MULTISET UNION authors_pkg.veva_authors;
authors_pkg.show_authors
10g_compwarn.sql
alter session set plsql_warnings='ENABLE:ALL'