Member Function Definitions
This is a translation reference to convert the Member Functions of the Oracle Create Type Statements (UDT's) to Snowflake
Description
Sample Source Patterns
Inserts for Simple square() member function
Oracle
INSERT INTO table_member_function_demo(column1) VALUES
(type_member_function_demo(5));Snowflake
INSERT INTO table_member_function_demo (column1)
SELECT OBJECT_CONSTRUCT('a1', 5);Simple square() member function
Oracle
Snowflake
Known Issues
Related EWIs
Last updated