-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path10g_setops.sql
50 lines (45 loc) · 1.61 KB
/
10g_setops.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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_type := nested_type(1,2,4);
answer nested_type;
PROCEDURE show_answer (str IN VARCHAR2)
IS
l_row PLS_INTEGER;
BEGIN
DBMS_OUTPUT.put_line (str);
l_row := answer.FIRST;
WHILE (l_row IS NOT NULL)
LOOP
DBMS_OUTPUT.put_line (l_row || '=' || answer (l_row));
l_row := answer.NEXT (l_row);
END LOOP;
DBMS_OUTPUT.put_line ('');
END show_answer;
BEGIN
answer := nt1 MULTISET UNION nt4;
show_answer('nt1 MULTISET UNION nt4');
answer := nt1 MULTISET UNION nt3;
show_answer('nt1 MULTISET UNION nt3');
answer := nt1 MULTISET UNION DISTINCT nt3;
show_answer('nt1 MULTISET UNION DISTINCT nt3');
answer := nt2 MULTISET INTERSECT nt3;
show_answer('nt2 MULTISET INTERSECT nt3');
answer := nt2 MULTISET INTERSECT DISTINCT nt3;
show_answer('nt2 MULTISET INTERSECT DISTINCT nt3');
answer := SET(nt3);
show_answer('SET(nt3)');
answer := nt3 MULTISET EXCEPT nt2;
show_answer('nt3 MULTISET EXCEPT nt2');
answer := nt3 MULTISET EXCEPT DISTINCT nt2;
show_answer('nt3 MULTISET EXCEPT DISTINCT nt2');
END;
/
/*======================================================================
| Supplement to the fifth edition of Oracle PL/SQL Programming by Steven
| Feuerstein with Bill Pribyl, Copyright (c) 1997-2009 O'Reilly Media, Inc.
| To submit corrections or find more code samples visit
| http://oreilly.com/catalog/9780596514464/
*/