2011-04-07 98 views
11

冬眠內選擇,我想知道是否有可能從條款中有某些指定SELECT子句像from子句

select count(*) as Y, this_.NAME as A, sel2.C 
from TABLE1 this_, 
    (select count(*) as C from 
     (select this_.NAME, this_.SEX 
     from TABLE1 this_ group by this_.NAME, this_.SEX) sel1 
    ) sel2 
group by this_.NAME, sel2.C; 

我需要這樣的查詢,以具有計數數量外部查詢中的額外列。 我無法找到如何在from中指定select語句,既不使用hql也不使用條件。

謝謝。

盧卡

+1

你能提供查詢一些信息呢?什麼是你的模型和你在找什麼。查詢似乎對我來說是無稽之談。 – GaetanZ 2011-08-02 22:33:41

回答