1# index_name will identify your index for future reference
2CREATE INDEX index_name ON table_name (column_name);
1create index your_index_name on your_table_name(your_column_name) using HASH;
2or
3create index your_index_name on your_table_name(your_column_name) using BTREE;