代码示例:
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?
谢谢,问候。