16

在此处输入图像描述

这是我的数据库结构。多对多的关系。我想选择写过同一本书的作者。使用 SQL,我做到了。如何使用 HQL?

   Query query = session.createSQLQuery("SELECT FirstName, LastName FROM authors, books, author_book as ab WHERE ab.authorID=authors.authorID AND ab.bookID = books.bookID AND ab.bookID = :id");
   query.setInteger("id", 1);
   List list = query.list();
   Iterator<Object[]> iter = list.iterator();
   while (iter.hasNext()) {
       Object[] obj = iter.next();
       System.out.println(obj[0] + " " + obj[1]);
    }
4

2 回答 2

29

假设实体名称是 Book 和 Author 并且 Book 具有 authors 属性:

select a.firstName, a.lastName from Book b join b.authors a where b.id = :id
于 2012-06-01T22:13:52.133 回答
1

让我们以实体 Authors、Books 和 AuthorBook 为例。

您可以尝试以下查询。

String hql = "select a.firstName, a.lastName from Authors a, Books b, AuthorBook ab where ab.authorId=a.authorId and ab.bookId=b.bookId and ab.bookId=:id";

List<Object[]> resultList = session.createQuery(hql).setInteger("id", 1).list();

for(Object[] result : resultList)
{

        System.out.println("First Name : " + result[0]);
        System.out.println("Last Name : " + result[1]);
}
于 2012-06-02T10:05:23.087 回答