有人可以将此SQL查询翻译为JPQL
string line;
ifstream highscore ("highscore.txt");
if (highscore.is_open())
{
getline(highscore, line);
}
staticText.SetWindowText(_T(line));
我尝试使用此
SELECT t.* FROM (SELECT * FROM ttrx_icms_report ORDER BY create_date DESC) t GROUP BY case_id ORDER BY t.identifier;
但它有一个解析错误(无效令牌)
我需要使用JPQL而不是本机查询才能使用Spring数据&Page 39
提前致谢。
答案 0 :(得分:0)
我不确定这种方法是否正常但我希望这会对你有所帮助..
@Entity
public class ttrx_icms_report{
private Integer case_id;
private String create_date;
private String identifier;
}