Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
hibernateを使用してdbからソートされた値をフェッチするには、次のNamedQueryを使用します。
@NamedQuery( name = "searchnearestdesc", query = "select t FROM Result t WHERE t.indec=:e" + "t.var<=:f ORDER BY var DESC" )
しかし、例外が発生します。エラーは何ですか?
句の間にANDが必要です。また、文字列を連結するときは末尾のスペースを忘れないでください;)
@NamedQuery( name = "searchnearestdesc", query = "select t FROM Result t WHERE t.indec=:e AND " + "t.var<=:f ORDER BY var DESC" )