Q. The number of attributes in the following SQL table is . . . . . . . .
CREATE TABLE employee (
emp_name CHAR(30),
emp_id INT
);
β
Correct Answer: (C)
2
Explanation: This question asks about the number of attributes in a MySQL table. An attribute is like a column in the table, holding specific information about each row.