I am trying to list all the entries of an index.
Let's say I have unique index_idx on 2 columns (col_1, col_2) on table table_test.
I assume that the uniqueness for a tuple is checked by concatenating the values in column col1 and col2 and checking if overall the value is unique.
But is there any method predefined using which we can list all the entries for index index_idx.
I saw a similar question here. But the answer didn't make much sense to me. What exactly is ''INDEX COLUMNS LIST' here?