Q. What does ‘name’ represent in the following code snippet?
Code:
CREATE TABLE Employee
(
Emp_name CHAR(30),
Emp_id INT(10),
Emp_address CHAR(30),
Emp_phone CHAR(12)
);
β
Correct Answer: (A)
A column