Generic B-tree index
In traditional relational database systems, the B-tree access method handles only built-in data types and therefore can compare only two keys of built-in data types. The B-tree index is useful for a query that retrieves a range of data values. To support UDTs, the database server provides an extended version of a B-tree, the generic B-tree index.
The database server uses the generic B-tree index as the built-in
secondary-access method. This secondary-access method is registered
in the sysams system catalog table with the name btree. When
you use the CREATE INDEX statement (without the USING clause) to create
an index, the database server creates a generic B-tree index. The
following statement creates a B-tree index on the zipcode column
of the customer table:
CREATE INDEX zip_ix ON customer (zipcode)
For more information, see the CREATE INDEX statement in the HCL OneDB™ Guide to SQL: Syntax.