adplus-dvertising
frame-decoration

Question

In the following SQL query, what does “person_id” stands for?
   CREATE TABLE person
   (person_ id SMALLINT UNSIGNED,
   fname VARCHAR(20),
   lname VARCHAR(20),
   CONSTRAINT pk_person PRIMARY KEY (person_id));

a.

Normal attribute of the table

b.

Super key

c.

Composite key

d.

Primary key

Answer: (b).Super key

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. In the following SQL query, what does “person_id” stands for?