10g_fav_union1.sql
来自「OReilly Oracle PL SQL Programming第4版源代码」· SQL 代码 · 共 13 行
SQL
13 行
DECLARE
our_favorites
strings_nt := strings_nt ();
BEGIN
our_favorites :=
authors_pkg.steven_authors
MULTISET UNION
authors_pkg.veva_authors;
authors_pkg.show_authors (
'STEVEN then VEVA', our_favorites);
END;
/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?