Hi I was trying to create Type but getting a Syntax error while doing it.
CREATE OR REPLACE TYPE ARR_HNW_ID AS VARRAY(50) OF INTEGER;
Can you please help me to resolve this Issue
I don’t believe OR REPLACE is valid syntax. You can CREATE or ALTER types but not REPLACE
Thera are multiple mistakes in your SQL:
So basically you can simply use integer[] for your ARR_HNW_ID