0
我知道我們使用query.setMaxResults()來限制HQL,但是如何在查詢中需要兩個限制。(HQL)如何設置兩個限制?
例如: Select t from Table as t where t.id = 1 and t.date > (Select t2.date from Table as t2 where t2.id = 2 order by date desc limit 1) order by date desc limit 1;
如果我把query.setMaxResults(1),將在外部選擇應用,但我應該怎麼應用它的內部SELECT語句?
感謝
謝謝。我使用了多個HQL查詢。 – user2798227