代码示例:
public List userCreateTable(int inputId) {
List<TimeLoggingDetail> tableView = new ArrayList<TimeLoggingDetail>();
tableView = database.createQuery("SELECT t FROM TimeLoggingDetail t WHERE t.loggingId = :loggingId").setParameter("loggingId", inputId).getResultList();
return tableView;
}
你好,
在我的数据表中,我得到了 inputId 为 4 的所有结果,它运行良好。我的问题是,如果我有多个 inputId,我该如何选择?我想选择 loggingId 为例如 4、6、8、9 的所有内容?
感谢和问候。