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));

  • (A) Normal attribute of the table
  • (B) DELAY_WRITE_KEY
  • (C) Composite key
  • (D) Primary key
πŸ’¬ Discuss
βœ… 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:
Explanation by: Priyanka Tomar
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:

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
197
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Priyanka Tomar
Publisher
πŸ“ˆ
99%
Success Rate