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