is primary key automatically indexed in postgresql? [closed] is primary key automatically indexed in postgresql? [closed] postgresql postgresql

is primary key automatically indexed in postgresql? [closed]


PostgreSQL automatically creates an index for each unique constraint and primary key constraint to enforce uniqueness. Thus, it is not necessary to create an index explicitly for primary key columns. (See CREATE INDEX for more information.)

Source:Docs


but after fetching all records this output still displayed same as order in which records are inserted

There is NO default "sort" order - even if there is an index on that column (which indeed is the case in Postgres: the primary key is supported by a unique index in the background)

Rows in a relational table are not sorted.

The only (really: the only) way to get a specific order is to use an ORDER BY

If you do not specify an ORDER BY the database is free to return the rows in any order it wants - and that order can change at any time.

The order can change because of various reasons:

  • other sessions are running the same statement
  • the table was updated
  • the execution plan changes
  • ...


In addition to what the others have said, Postgres does not have a concept of a 'Clustered Index' like Microsoft SQL Server and other databases have. You can cluster an index, but it is a one-time operation (until you call it again) and will not maintain the clustering of rows upon edits, etc. See the docs

I was running into the same thing you were, where I half expected the rows to be returned in order of primary key (I didn't insert them out of order like you did, though). They did come back upon initial insert, but editing a record in Postgres seems to move the record to the end of the page, and the records quickly became out of order (I updated fields other than the primary key).