If I created an index with following command: CREATE INDEX ixname ON tbname (id);
Where ixname
is the name of index, tbname
is the table name for which the index is being created and id
is the column the index is for.
Now, if I wanted to view what's in ixname
, how would I do it? (I'm asking with the assumption that an index is a relation/table with sorted column)