Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Clustered vs Non-Clustered Indexing
00:00
5 left

Clustered vs Non-Clustered Indexing

MediumSQL · PostgreSQL

Problem

Explain the difference between clustered and non-clustered indexing and how they impact query performance at TikTok.

Use PostgreSQL terminology and inspect the catalog metadata to support the explanation. Distinguish PostgreSQL's clustering flag from a continuously maintained clustered index.

Output

  1. One row per valid index on video_events
  2. Columns: index_name, access_method, and clustering_status
  3. Sort by index_name ascending

Schema

pg_index
ColumnTypeDescription
indexrelidOIDOID of the index relation
indrelidOIDOID of the indexed table relation
indisclusteredBOOLEANWhether the index is marked as the table's clustering index
indisvalidBOOLEANWhether the index is valid for query planning
pg_class
ColumnTypeDescription
oidPKOIDObject identifier for the relation
relnameNAMERelation name
relkindCHARRelation kind, such as table or index
relamOIDOID of the relation access method
pg_am
ColumnTypeDescription
oidPKOIDObject identifier for the access method
amnameNAMEAccess method name, such as btree or hash
Tablespg_indexpg_classpg_am
Interviewer

Your question is Clustered vs Non-Clustered Indexing. Start with the requirements and the three tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.