Complete the code to identify the type of index that uniquely identifies each record in a database table.
The index that uniquely identifies each record is called a [1] index.A primary index uniquely identifies each record in a database table. It ensures that no two rows have the same key value.
Complete the sentence to describe the index used to improve query performance on non-primary key columns.
An index created on columns other than the primary key to speed up queries is called a [1] index.A secondary index is created on columns other than the primary key to improve query speed. It does not guarantee uniqueness.
Fix the error in the statement about primary indexes.
A primary index [1] allow duplicate key values.A primary index cannot allow duplicate key values because it uniquely identifies each record.
Fill both blanks to complete the description of secondary indexes.
Secondary indexes [1] the primary index and [2] the uniqueness enforced by the primary index.
Secondary indexes are separate from the primary index and do not affect the uniqueness enforced by the primary index. They help improve query speed on columns other than the primary key.
Fill all three blanks to complete the dictionary that creates a mapping of index types to their main characteristics.
index_info = { [1]: '[2]', '[3]': 'Improves query speed on non-key columns'}The dictionary index_info maps Primary Index to 'Uniqueness enforced' and Secondary Index to 'Improves query speed on non-key columns'.