我有一个名为的字段ebOpenUptoDays
,StartDate
在我的域类中名为 Training
现在让我们说
ebOpenUptoDays = 10(天)
开始日期 = 2013 年 10 月 30 日
我想ebExpiryDate
通过以下计算从我的 HQL 中调用日期
ebExpiryDate = 开始日期 - ebOpenUptoDays
ebExpiryDate = 2013 年 10 月 20 日(需要这种格式)
trainingList = Training.executeQuery("SELECT ........... as ebExpiryDate from Training as t)