-
In the following query, what does “person_id” stands for?
CREATE TABLE Student
(id SMALLINT UNSIGNED,
fname VARCHAR(20),
lname VARCHAR(20) ,
CONSTRAINT pk_Student PRIMARY KEY (Student_id));
-
- Primary key
- Composite key
- Normal attribute of the table
- Super key
- None of these
Correct Option: D
Primary key is also termed as a super key.