WGU Data-Management-Foundations Question Answer
Which property is associated with a one-field primary key?
Simple
Duplicate
Numeric
Composite
Aprimary keyuniquely identifies each row in a table. When a primary key consists ofonly one field, it is called aSimple Primary Key.
Types of Primary Keys:
Simple Primary Key (Correct Answer):
Contains onlyone column.
Example:
sql
CREATE TABLE Students (
StudentID INT PRIMARY KEY,
Name VARCHAR(50)
);
Composite Primary Key:
Usesmultiple columnsto ensure uniqueness.
CREATE TABLE Orders (
OrderID INT,
ProductID INT,
PRIMARY KEY (OrderID, ProductID)
Surrogate Primary Key:
A system-generatedunique identifier(e.g., UUID or AUTO_INCREMENT).
Why Other Options Are Incorrect:
Option B (Duplicate) (Incorrect):A primary keymust be unique, so itcannot be duplicate.
Option C (Numeric) (Incorrect):While primary keyscan be numeric, they can also be alphanumeric (VARCHAR).
Option D (Composite) (Incorrect):Acompositekey consists ofmultiple fields, whereas a simple key isa single field.
Thus, the correct answer isSimple, since aone-field primary keyis a simple primary key.
TESTED 25 Feb 2026
Copyright © 2014-2026 ACE4Sure. All Rights Reserved