Q. What is the number of attributes in the following SQL table?
CREATE TABLE employee (
emp_name CHAR(30),
emp_id INT
);
β
Correct Answer: (B)
2
Explanation: This question is about understanding the structure of a table in a database. The code you see defines a table called "employee" with two columns: