update 表名 set 类型='外包' where 入职日 between '2020-04-01' and '2020-06-30'
select 分类,一级部门,二级部门,工号,在职状态,岗位,姓名,职位性质,入职日,'外包' as 类型 from 表
where 入职日 between '2020-04-01' and '2020-06-30'
union
select 分类,一级部门,二级部门,工号,在职状态,岗位,姓名,职位性质,入职日,类型 from 表
where 入职日<'2020-04-01'