日期:2014-05-17  浏览次数:20713 次

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