私は冬眠するのが初めてです。次のように、休止状態のSQLクエリでhavingキーワードを使用したい:
select from Store where storeName like 'a%' having productCount >1
ここで、Store は store テーブルにマッピングされ、storeName は store テーブルの store_name にマッピングされ、productCount は store テーブルの product_count にマッピングされます。
すべてのマッピングは正常に機能しています。しかし、このクエリを実行すると、次のエラーが返されます。
org.hibernate.hql.ast.QuerySyntaxException: unexpected token: having near line 1, column 43.
それで、誰かがこの問題を解決するのを手伝ってくれますか?