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

hibernate 多表查询

时间:2015-05-07 12:19:36      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

 1     public List dzcx(Object a) {
 2         try{
 3             
 4             //Query p=getSession().createQuery("PersonInf where name=:name ");
 5             Query p=getSession().createQuery("select p.name,p.age,a.addressDetail from PersonInf as p" +
 6                     " inner join p.addressInfs as a" +
 7                     " where a.addressDetail=:a" );
 8             //要加上select就要加上别名
 9             //多个表之间查询加上   inner join
10             p.setParameter("a", a);
11             return    p.list();
12         }
13         catch(RuntimeException e)
14         {
15             log.error("find Name failed", e);
16             throw e;
17         }

select p.name,p.age,a.addressDetail from PersonInf as p inner join p.addressInfs as a where a.addressDetail=:a 

这里是根据地址查询,显示名字、年龄、地址。 inner join  自动连接中间表,根据p.addressInfs 找到addressInf表。

技术分享

 

 

调用查询:

<%

 PersonInfDAO p=new PersonInfDAO();

List a=p.dzcx("垫江");

Iterator it=a.iterator();

while(it.hasNext()){

 Object[] pit=(Object[])it.next();//注意如果返回的是一个值,而不是一个数组,那么这里就应该是Object pit=(Object)it.next();

out.print(pit[0]);

out.print(pit[1]);

out.print(pit[2]);

}

%>

hibernate 多表查询

标签:

原文地址:http://www.cnblogs.com/ZSK991656110/p/4484353.html

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