ACD100 Exam QuestionsBrowse all questions from this exam

ACD100 Exam - Question 54


Which two statements are true about the Primary Key constraint in SQL? (Choose two.)

Show Answer
Correct Answer: ABC

A Primary Key must contain UNIQUE values, ensuring that each entry in that column is distinct and identifiable. Additionally, a Primary Key uniquely identifies each record in a SQL database table, ensuring that each record can be retrieved through this unique identifier.

Discussion

5 comments
Sign in to comment
nksOptions: AB
Mar 21, 2023

Should A and B

Vinay1178Options: AB
Mar 27, 2023

correct answer is AB

reika1914Options: AB
Apr 24, 2023

Correct Answer: AB

nyxxxOptions: AB
Apr 26, 2023

C is not a true statement. A primary key can be made up of one or more columns in a table. Therefore answer is A and B

Djoml1toOptions: AB
Aug 22, 2023

Correct:AB "The PRIMARY KEY constraint uniquely identifies each record in a table. Primary keys must contain UNIQUE values, and cannot contain NULL values. A table can have only ONE primary key; and in the table, this primary key can consist of single or multiple columns (fields)." https://www.w3schools.com/sql/sql_primarykey.ASP#:~:text=Primary%20keys%20must%20contain%20UNIQUE,or%20multiple%20columns%20(fields).