📜  create-table-with-index-organization - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:24.479000             🧑  作者: Mango

代码示例1
create table bricks_iot (
  bricks_id integer primary key
) organization index;

select table_name, iot_type
from   user_tables
where  table_name = 'BRICKS_IOT';