SELECT uid,empNO,fullName,deptId,deptName,beginDate,endDate
FROM user_dept_view
where uid = 13
-- 任职阶段 :有确定的开始时间和结束时间在一个部门中任职
and (
(
-- 某任职阶段 包含在本月中
beginDate >= '2021-01-01' and endDate <= '2021-01-31'
)OR(
-- 本月完全包含在某任职阶段中
beginDate <= '2021-01-01' and endDate >= '2021-01-31'
)OR (
-- 在本月之前就开始到某部门任职 ,本月之后仍在该部门任职
beginDate <= '2021-01-01' and ISNULL(endDate)
)OR (
-- 本月中一天到某部门任职,,本月之后仍在该部门任职
beginDate >= '2021-01-01' and ISNULL(endDate)
)OR (
-- 本月之前到某部门任职,本月中的一天离开该部门
beginDate <= '2021-01-01' and endDate <= '2021-01-31'
)OR(
-- 本月中的一天到某部门任职,本月之后的一天离开该部门
beginDate >= '2021-01-01' and endDate >= '2021-01-31'
))