An index-organized table (IOT) is a type of table where the data is stored in a B*Tree index structure.
CREATE TABLE t1 (c1 NUMBER PRIMARY KEY, c2 VARCHAR2(30)) ORGANIZATION INDEX;
Category: I