Bitmap index:
CREATE TABLE customer
(
customerid character varying(20) NOT NULL,
title character varying(40),
country character varying(100),
phone character varying(50))
I have this table customer and i want to create a bitmap index on title and country... how can i do it?