CREATE TABLE EMP(EMPNO numeric(5,0) NOT NULL primary key,--雇员的编号ENAME nvarchar(10) not null,--雇员的名字JOB nvarchar(9)not null,--雇员的的职位MGR numeric(5,0),--上级主管编号 HIREDATE datetime,--入职(受雇)日期 SAL numeric(7, 2),--薪金:COMM numeric(7, 2),--佣金:DEPTNO numeric(2,…