Primary Key
A unique identifier for each row in a database table.
A primary key is a column (or combination of columns) that uniquely identifies each row in a table. In dimension tables, primary keys (like user_id or post_id) are used to join with foreign keys in fact tables. Primary keys must be unique and cannot be null.
