Q. 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));
β
Correct Answer: (B)
DELAY_WRITE_KEY
Explanation: This question is asking you to identify what "person_id" represents within the given SQL code. The code creates a table named "person" with several columns: