We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4454bbd commit 3d4934aCopy full SHA for 3d4934a
sql/plsql/examples/views.sql
@@ -44,3 +44,7 @@ CREATE OR REPLACE VIEW oc_inventories OF inventory_typ
44
i.quantity_on_hand
45
FROM inventories i, warehouses w
46
WHERE i.warehouse_id=w.warehouse_id;
47
+
48
+CREATE EDITIONABLE VIEW TEST (A, B, C)
49
+ AS SELECT 'A', 'B', 'C'
50
+ FROM DUAL;
0 commit comments