我必须编写一个查询,其中条件参数未知,因为它们是在jdbc中动态设置的。这些条件应该是可选的。 我用的是h2数据库。 查询是:
select e.event_id,a.attempt_id,a.preferred,a.duration,a.location
from event e,attempt a
where e.user_label=? and e.start_time=?
and e.end_time=? and e.duration_min=?
and e.duration_max=?
and e.event_id=a.event_id
但如果使用OR,如何使这些条件可选,因为参数不知道?
谢谢!
答案 0 :(得分:8)
如果可以switch to named parameters,您可以将条件更改为检查null
的参数,如下所示:
select e.event_id,a.attempt_id,a.preferred,a.duration,a.location
from event e,attempt a
where
(:ul is null OR e.user_label=:ul)
and (:st is null OR e.start_time=:st)
and (:et is null OR e.end_time=:et)
and (:dmin is null OR e.duration_min=:dmin)
and (:dmax is null OR e.duration_max=:dmax)
and e.event_id=a.event_id
如果你不能切换到命名参数,你仍然可以使用相同的技巧,但你需要为每个可选的参数传递两个参数:如果第二个参数是1
,那么第一个参数将是0
设置,select e.event_id,a.attempt_id,a.preferred,a.duration,a.location
from event e,attempt a
where
(? = 1 OR e.user_label=?)
and (? = 1 OR e.start_time=?)
and (? = 1 OR e.end_time=?)
and (? = 1 OR e.duration_min=?)
and (? = 1 OR e.duration_max=?)
and e.event_id=a.event_id
如果省略第二个:
{{1}}
答案 1 :(得分:3)
您可能正在看的是动态SQL。当所需值不为null时,可以附加可以更改的查询部分:
String sqlQuery ="select e.event_id,a.attempt_id,a.preferred,a.duration,a.location from event e,attempt a where 1=1"
if (vUserLabel!=null){ //vUserLabel : The variable expected to contain the required value
sqlQuery = sqlQuery+"e.user_label=?";
}
稍后您可以执行:
int pos = 1;
...
if (vUserLabel!=null) {
stmt.setString(pos++, vUserLabel);
}
stmt.executeQuery(sqlQuery);
这样条件会动态地附加到查询中,无需重复工作,您就可以完成工作了。
答案 2 :(得分:0)
好的,自问这个问题以来已经有一段时间了,但我会写这个问题的解决方案。
我发现当查询太大或太复杂时,在末尾附加另一个字符串并不容易,或者有时资源可以存储在文件或数据库中,我所做的就是这个。
我在.sql文件中查询了所以我在查询中添加了一个标记。
存储查询的my.sql文件。
SELECT * FROM my_table
WHERE date_added BETWEEN :param1 and param2
$P{TEX_TO_REPLACE}
GROUP BY id
现在在我的代码中
String qry = component.findQuery("my.sql");//READ THE FILE
String additionalQuery = " AND classification = 'GOB'";
if(condition1 == true) {
additionalQuery = " AND customer_id = 66";
}
qry = qry.replace("$P{TEX_TO_REPLACE}",additionalQuery);
现在我的查询看起来像这样。
SELECT * FROM my_table
WHERE date_added BETWEEN :param1 and param2
AND customer_id = 66
GROUP BY id