有人可以解释我如何将此查询转发给timestamp
吗?格式为HH:mm
以查找db列groundCutOff
的最短时间。
我的数据库groundCutOff
列格式为varchar
。
List<String> locs=new ArrayList<>()
l.add("rr_1376")
// l.add("BBY_70")
//l.add("BBY_87")
l.add("rr_87")
Query minCutOffQry=session.createQuery("Select min(groundCutOff) from ArcLocation where loc IN(:locs)")
minCutOffQry.setParameterList("locs", locs);
List minCutOffTimeLst=minCutOffQry.list()
if(!minCutOffTimeLst.isEmpty()){
return minCutOffTimeLst.get(0)
}
Similar to this..
select min(cast(groundCutOff as time)) from ArcLocation;