Que: What does ‘name’ represent in the following SQL code snippet?

   CREATE TABLE student
   (
       name CHAR(30),
       roll_num INT,
       address CHAR(30),
       phone CHAR(12)
   );
a. A table
b. A row
c. A column
d. An object
Answer: A column

Leave a Comment