当前位置: 代码迷 >> Java Web开发 >> hql语句select有关问题
  详细解决方案

hql语句select有关问题

热度:167   发布时间:2016-04-17 00:31:42.0
hql语句select问题
select max(fsid) from com.zycloud.model.TbFunctionSon group by tbFunctionFather 这样写为什么不对啊 请大侠帮帮啊

------解决方案--------------------
select max(fsid) from TbFunctionSon tb group by tb.tbFunctionFather
------解决方案--------------------
我认为应该这样写 select max(fsid) from TbFunctionSon tb group by tb.tbFunctionFather
  相关解决方案