SSC-FDM-RS0003
Foreign Key translation will be supported in the future.
Description
The foreign key translation will be transformed in the future. Documentation for Snowflake's Foreign Key can be accessed here.
Code Example
Input Code:
CREATE TABLE TABLE1 (
id INTEGER,
PRIMARY KEY (id)
);
CREATE TABLE TABLE2 (
id INTEGER,
id_table1 INTEGER,
FOREIGN KEY (id_table1) REFERENCES TABLE1 (col1)
);Output Code:
Recommendations
You can manually alter tables with Foreign Keys and add them.
If you need more support, you can email us at [email protected]
Last updated
