1.创建表的三种姿势 第一种 //员工表 create table if not exists default.emp( empno int, ename string, job string, mgr int, hiredate string, sal double, comm double, deptno int ) row format delimited fields terminated by '\t'; //部门表 create table if not exists default…