Home » MYSQL » Mysql Setup » Question
  1. The number of attributes in the following table is ______________.
    CREATE TABLE Student(
    name CHAR(30),
    id INT(11)
    );
    1. 3
    2. 2
    3. 1
    4. 0
    5. None of these
Correct Option: B

The name of the table created is ’Student’. It has two attributes, namely, ’name’ and ’id’. The attributes are the columns in a table. name is of type string and id is of type integer.



Your comments will be displayed only after manual approval.