Home » MYSQL » Mysql Compound Statements » Question
  1. The number of attributes in the following table is ______________.
    CREATE TABLE Student (
    Stu_name CHAR(30),
    Stu_id INT
    );
    1. 30
    2. 3
    3. 2
    4. 1
    5. None of these
Correct Option: C

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



Your comments will be displayed only after manual approval.