我正在嘗試創建一個模型以傳遞給gsp視圖。我想在兩個表中做一個子查詢。我有兩個域,alum_profile和alum_position。 alum_profile有許多alum_position。 alum_position屬於alum_profile。在SQL如果我想創建一個結果集,我想有這樣的事情:幫助創建視圖模型
Select count(id),
(Select CONCAT(first_name, ' ', last_name)
From alum_profile
where
alum_profile_id =alum_profile.id) as Person
FROM alum_position
GROUP BY alum_profile_id
ORDER BY count(id) DESC
如何做到這一點與HQL,並創建一個可以傳遞到GSP視圖模型。
感謝您的幫助 傑森
我使用的泉源,與MySQL和Grails的
你有這些表的任何域類嗎? –