Criar-tabela-com-índice-organização
create table bricks_iot (
bricks_id integer primary key
) organization index;
select table_name, iot_type
from user_tables
where table_name = 'BRICKS_IOT';
Fragile Ferret