I have some source syntax that I need to convert from MySQL to postgreSQL. It seems that there is no analog in postgres for generating multiple indexes on a single table. Also, I am having trouble understanding why one would generate multiple indexes on a single table:
ALTER TABLE concept
ADD PRIMARY KEY (table_id),
ADD UNIQUE INDEX idx_table_table_id (table_id),
ADD INDEX idx_table_code (table_code),
ADD INDEX idx_table_v_id (v_id),
ADD INDEX idx_cd_id (d_id),
ADD INDEX idx_table_class_id (table_class_id);
any ideas?