-->
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.  [ 2 posts ] 
Author Message
 Post subject: Frage zur Erstellung einer Query
PostPosted: Mon Jun 19, 2006 5:27 am 
Regular
Regular

Joined: Mon May 22, 2006 8:32 am
Posts: 67
Hallo Leute,

ich habe ein Problem beim Erstellen einer Query. Folgende Situation:

Tabelle AcctBal

id: AcctBalId
- grpAlwAcctSk (big_decimal)
- nomDate (big_decimal)

Attribute:
mi

Tabelle Acct

id: grpAlwAcctSK (big_decimal)

Attribute:
code

Meine beiden Tabellen sind über den Fremdschlüssel grpAlwAcctSk miteinander verbunden. Ich möchte folgende Abfrage stellen:

Code:
select
   gaa.code,
   gaab.mi,
   gaab.nomDate,
   
from
   Acct gaa,
   AcctBal gaab
   
where
   gaa.grpAlwAcctSk = gaab.grpAlwAcct


Die Abfrage schlägt fehl mit der Meldung: could not resolve property: nomDate.
Dieses Feld ist Teil der ID von AcctBal.grpAlwAcct. Bei dem Join kann ich auf den Teilschlüssel gaab.grpAlwAcct zugreifen. Im select klappt das nicht. Wie kann ich die dargestellte Query genau so umsetzen?

Danke!

Gruß,

a.k.


Top
 Profile  
 
 Post subject: Query erstellen
PostPosted: Mon Jun 19, 2006 5:51 am 
Regular
Regular

Joined: Mon May 22, 2006 8:32 am
Posts: 67
Hi,

ok, das war zu früh geschossen. Sorry. Will man auf einen Teil der ID im Select zugreifen, so kann man das mit

Code:
select
   gaa.code,
   gaab.mi,
   gaab.id.nomDate
   
from
   Acct gaa,
   AcctBal gaab
   
where
   gaa.grpAlwAcctSk = gaab.grpAlwAcct

erreichen. Ich hoffe das ist jemandem hilfreich...

Gruß,

a.k.


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

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.