Consider the following create table command:
create table emp
(emp_name varchar (20),
salary numeric (12, 2),
primary key (emp_name));
In the above relation numeric represents _________.1
Name of the relation
2
Schema of the relation
3
Type of attribute emp_name
4
Type of attribute salary