create table with index organization

Solutions on MaxInterview for create table with index organization by the best coders in the world

showing results for - "create table with index organization"
Viktoria
15 Sep 2016
1create table bricks_iot (
2  bricks_id integer primary key
3) organization index;
4
5select table_name, iot_type
6from   user_tables
7where  table_name = 'BRICKS_IOT';
similar questions
queries leading to this page
create table with index organization