我将参数传递给PreparedStatement,如下所示:
public void getNodes(String runId, File file, Connection conn) {
PreparedStatement ps = null;
ResultSet rs = null;
try {
ps = conn.prepareStatement(Mat.queries.get("NettingNode.QUERY"));
ps.setString(1, runId);
ps.setFetchSize(10000);
rs = ps.executeQuery();
// etc.
} catch (Exception e) {
logger.error(e, e);
} finally {
close(rs, ps);
}
}
查询如下:
select * from table_1 where run_id = ?
现在我想像这样修改我的查询,并重用第一个参数(?
都会使用runId参数):
select * from table_1 where run_id = ?
union
select * from table_2 where run_id = ?
如果不这样做,是否可能:
ps.setString(1, runId);
ps.setString(2, runId);
答案 0 :(得分:9)
使用普通JDBC无法做到这一点。您可以改为使用Spring的JDBCTemplate,它可以支持命名参数所需的内容,并在语句中的任何位置重用相同的名称。
请参阅Here
答案 1 :(得分:0)
以下对于oracle可以正常工作。但是,如果表很大,可能不是一个好选择。
Select * from ( SELECT ? run_id FROM DUAL ) A
JOIN ( select * from table_1
union
select * from table_2
) B ON A.run_id = B.run_id