码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate hql 多表查询

时间:2014-11-06 16:47:43      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   log   bs   new   as   

String hql="select c from Col c ,UserRole role where c.id=role.columnId and c.id=? and role.userId=?";

this.getHibernateTemplate().find(hql,new Object[]{colId,userId}).get(0);

上面返回的是一个对象实体,实体的类型是Col

 

String hql="from Col c ,UserRole role where c.id=role.columnId and c.id=? and role.userId=?";

this.getHibernateTemplate().find(hql,new Object[]{colId,userId}).get(0);

上面返回的是一个数组  数组的第一个元素类型是Col,第二个元素类型是UserRole

 

所以在多表查询中,如果要取得某个单独的实体直接用"select c" (c表示该类在查询中的别名)

Hibernate hql 多表查询

标签:style   blog   color   sp   div   log   bs   new   as   

原文地址:http://www.cnblogs.com/toSeeMyDream/p/4079119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!