CREATE INDEX ord_customer_ix ON orders (customer_id);
By default, if we do not mention anything, oracle creates an index as a b-tree index. But we should know when to use it.
B-tree index stores data as binary tree format. As we know that, index is a schema object which stores some sort of entry...