how to create nested table in sql

Solutions on MaxInterview for how to create nested table in sql by the best coders in the world

showing results for - "how to create nested table in sql"
Yannik
04 Oct 2016
1CREATE OR REPLACE TYPE my_tab_t AS TABLE OF VARCHAR2(30);
2/
3CREATE TABLE nested_table (id NUMBER, col1 my_tab_t)
4       NESTED TABLE col1 STORE AS col1_tab;
5