FOREIGN KEY
Description
Grammar Syntax
FOREIGN KEY (column_name [, ... ] ) REFERENCES reftable [ ( refcolumn )Sample Source Patterns
Input Code:
CREATE TABLE table15 (
col1 INTEGER,
FOREIGN KEY (col1) REFERENCES table_test (col1)
);Output Code:
Related EWIs
Last updated
