需求分析 计算部门的平均薪资和年龄 只统计年龄在20岁以上的员工 根据部门名称和员工性别为粒度来进行统计 统计出每个部门分性别的平均薪资和年龄 关键技术点 导入隐式转化import spark.implicits._ 导…
标签:employee
hive 建表语句
## 建表语句 create external table employee ( eid int, ename string ) partitioned by (gender string) row format del…
postgresql group by first 的三种写法
在sql 查询过程中经常有一种查询,某一类别的第一名 比如: limingyao=# \d employee Table "public.employee" Column | Type | Collation | Nul…