CITM-001 · Question #19
Which key uniquely defines the characteristics of each row?
The correct answer is A. Primary Key. A primary key is a column or combination of columns that contain values that uniquely identify each row in the table. It enforces the entity integrity of the table and prevents the insertion of duplicate rows. A table can have only one primary key, which is usually defined on…
Question
Which key uniquely defines the characteristics of each row?
Options
- APrimary Key
- BForeign Key
- CSecondary Key
- DImported Key
How the community answered
(20 responses)- A90% (18)
- B5% (1)
- D5% (1)
Explanation
A primary key is a column or combination of columns that contain values that uniquely identify each row in the table. It enforces the entity integrity of the table and prevents the insertion of duplicate rows. A table can have only one primary key, which is usually defined on an identity column or a column with not null and unique constraints. A primary key also creates a unique index for the table, which allows fast access to data when the primary key is used in queries.
Topics
Community Discussion
No community discussion yet for this question.