-->
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: outer join criteria with subquery
PostPosted: Mon Mar 24, 2014 7:14 am 
Newbie

Joined: Mon Mar 24, 2014 7:10 am
Posts: 1
Hi all,

I'm trying to make this query (Oracle db) with Hibernate Criteria without success!

Code:
select distinct rp1.timeslotstatuscode, rp1.timeslotstatus, nvl(nbStatus,0) as nbStatus from rp_cc_terminals rp1
left outer join (
  select distinct rp.timeslotstatuscode, rp.timeslotstatus,
  count(rp.timeslotstatuscode) over (partition by rp.timeslotstatuscode, rp.timeslotstatus) as nbStatus
  from rp_cc_terminals rp where PERIODTYPECODE=1
) sr on rp1.timeslotstatus=sr.timeslotstatus
order by rp1.timeslotstatus;


Any hint?


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.