Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个在字段中包含各种员工数据的表。我需要添加一个列,该列将显示基于天气的“活动”或“终止”状态,在“终止日期”列中有一个日期。
例如,如果员工在 StartDate 列中有日期但在 EndDate 列中没有日期,则 EmpStatus 列将返回“活动”状态。如果 EndDate 列中有日期,则它将返回“已终止”状态。
我从视图加载主表是最快和最简单的方法。
问题是,我在哪里可以找到执行所需功能的脚本。
SELECT CASE WHEN EndDate is not null then 'Termed' WHEN StartDate is not null then 'Active' else 'unknown' end as EmpStatus FROM employee