select [all|distinct] [top (<expression>) [Percent] [with ties]] <column list> [from <source table(s)/views>] [where <restrictive condition>] [group by <column name or expression using a column in the select list>] [having &l
转载请注明原文地址: 一:HQL 1:HQL语句格式:select from POJO类名 where 条件表达式 group by 属性 having 聚集函数 order by 属性 [其中,from子句是必备的,其他可以省略] 2:from子句的使用:检索对象 1)简单查询:from POJO类名:查询POJO表中所有记录,并返回一个对象集合 2)别名:from POJO类名 a_name:把查询对象冠以a_name别名 3:select子句的使用:自定义检索结果 1)查询对象的某属性组: