hibernate oracle 中如何写计算员工工龄的方法?
selectround(months_between(sysdate,hireDate))/12asworkTimefromemployeewhereemp_id=25;...
select round(months_between(sysdate,hireDate))/12 as workTime from employee where emp_id = 25;
hireDate 为员工雇佣关系成立时间
怎样把上述语句写成 String hql =“ ”?
告诉我“”中如何处理? 展开
hireDate 为员工雇佣关系成立时间
怎样把上述语句写成 String hql =“ ”?
告诉我“”中如何处理? 展开
展开全部
你用hibernate的话,可以把每个人的工龄提前算出来啊,在Employee.hbm.xml里:
<property name="workTime" formula="(select round(months_between(sysdate,hireDate))/12 from employee where emp_id=id)">
</property>
然后Employee里定义一个workTime对象,你查询Employee时,每个人的工龄也算出来了。上面最后那个ID为当前记录的ID,你在配置文件里如果定义的为大写,就用大写的。
<property name="workTime" formula="(select round(months_between(sysdate,hireDate))/12 from employee where emp_id=id)">
</property>
然后Employee里定义一个workTime对象,你查询Employee时,每个人的工龄也算出来了。上面最后那个ID为当前记录的ID,你在配置文件里如果定义的为大写,就用大写的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询