-
The number of attributes in the following table is ______________.
CREATE TABLE Student(
name CHAR(30),
id INT(11)
);
-
- 3
- 2
- 1
- 0
- 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.