TutorialsArena

PostgreSQL: Creating Indexes for Performance Optimization

Improve query performance in PostgreSQL by creating indexes. This guide explains index types, syntax, and best practices for indexing.



Creating Indexes in PostgreSQL

Why Use Indexes?

Indexes in PostgreSQL (and other relational database systems) are special lookup tables that dramatically speed up data retrieval. They're like an index in the back of a book; instead of reading every page to find specific information, you can go directly to the page containing the information you need. Indexes significantly improve query performance, especially for large tables, by reducing the amount of data the database needs to scan. However, indexes add overhead to database write operations (inserts, updates, deletes).

Creating Indexes with `CREATE INDEX`

The `CREATE INDEX` command creates a new index. Indexes are created on one or more columns of a table and improve the performance of queries that filter or sort data based on the indexed columns. PostgreSQL supports various index types; the default is a B-tree index, suitable for many scenarios.

`CREATE INDEX` Syntax

Syntax

CREATE INDEX index_name
ON table_name (column1 [ASC | DESC] [NULLS {FIRST | LAST}], column2, ...);

Where:

  • index_name: The name you give to the index (must be unique within the database).
  • table_name: The table the index is created on.
  • column1, column2, ...: The columns to index. You can optionally specify ascending (`ASC`) or descending (`DESC`) order. `NULLS FIRST` or `NULLS LAST` specifies the ordering of `NULL` values.
  • USING method (optional): Specifies the index method (e.g., `btree`, `hash`, `gin`, `gist`, `brin`, `spgist`). B-tree is the default.

Example: Creating and Using an Index

This example demonstrates creating and using an index in PostgreSQL. It shows creating a table, querying data without an index (resulting in a sequential scan), creating an index, and then querying the data again (now using the index for faster retrieval).

1. Create Table

CREATE TABLE Statement

CREATE TABLE Person_details (
  id SERIAL PRIMARY KEY,
  Person_name VARCHAR(255),
  Mobile_number VARCHAR(20)
);

2. Insert Data

INSERT INTO Statement

INSERT INTO Person_details (Person_name, Mobile_number) VALUES
('Mike Taylor', '(444)-333-1234'),
('John Doe', '(111)-222-3333');

3. Querying without an Index

The `EXPLAIN` command shows that a sequential scan is used (it has to check every row).

EXPLAIN Query

EXPLAIN SELECT * FROM Person_details WHERE Mobile_number = '(444)-333-1234';

4. Create Index

CREATE INDEX Statement

CREATE INDEX idx_Person_details_Mobile ON Person_details (Mobile_number);

5. Querying with an Index

The `EXPLAIN` command now shows that the index is used (much faster).

EXPLAIN Query

EXPLAIN SELECT * FROM Person_details WHERE Mobile_number = '(444)-333-1234';

Conclusion

PostgreSQL indexes dramatically improve query performance. Creating indexes on frequently queried columns is a crucial aspect of database optimization.