-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: RIGHT JOIN mit HQL
PostPosted: Mon Mar 24, 2008 4:04 pm 
Newbie

Joined: Mon Mar 24, 2008 3:51 pm
Posts: 1
Hallo

Mein Problem ist folgendes:

Ich möchte folgende Query als NamedQuery in einer Entity implementieren:

Code:
SELECT m.id, t.tip FROM tip t RIGHT JOIN matches m ON m.id = t.match_id AND t.user_id=17


Wenn ich diese Query auf einer SQL-Datenbank absetze erhalte ich das gewünschte Resultat.

Wie kann ich die gleiche Query als NamedQuery mit HQL implementieren? Ich habe u.a. folgendes versucht:

Code:
@Entity
@NamedQueries({
   @NamedQuery(
         name="findTips",
         query="SELECT t FROM Tip AS t RIGHT JOIN t.matches AND t.userId = :userId"
   )
})


Leider funktioniert dies jedoch nicht. Ich erhalte folgende Fehlermeldung vom JBoss-Server:

Code:
org.hibernate.hql.ast.QuerySyntaxException: unexpected token: AND near line 1, column 73


Welches ist die korrekte Syntax für die obengenannte Query in HQL?

Zum Voraus besten Dank für die Antwort.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.