具有多个输入的数据库查询

时间:2013-09-25 09:29:15

标签: sql orm

代码示例:

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?

谢谢,问候。

0 个答案:

没有答案