Getting Started (LEGACY)
--Invalid Create Table
CREATE TABLE! table_invalid
(
col1 VARCHAR2(255 BYTE),
col2 VARCHAR2!
);
--Create Table (with an error)
CREATE TABLE table1
(
col1 VARCHAR2(255 BYTE),
col2 VARCHAR2!
);
--Create View (valid example)
CREATE OR REPLACE FORCE VIEW view1
AS
SELECT
XMLSEQUENCE(1),
col1,
col2
FROM table1;Last updated
