在下面的代码中,我比较了表 S_R_VAL 和 R_VAL 的两个结果集。我需要比较 S_NUMBER(来自 S_R_VAL 表)和 S_NO(来自 R_VAL 表)。比较时我收到此错误“java.lang.RuntimeException:两个结果集包含不同数量的列!。请帮助修复此错误。
String SSQ = "select DISTINCT S_NUMBER from OTG.S_R_VAL" +
" WHERE R_TS = (SELECT MAX(R_TS) FROM OTG.S_R_VAL) order by S_NUMBER";
String SDS = "SELECT DISTINCT S_NUMBER FROM OTG.S_R_VAL AS STG WHERE S_NUMBER NOT IN" +
"(SELECT S_NO FROM OTG.R_VAL AS REV WHERE STG.S_NUMBER = REV.S_NO )";
String SSR = "SELECT DISTINCT S_NO FROM OTG.R_VAL where S_NO != 'NULL' order by S_NO";
String SSO = "Select O_UID from OTG.OPTY where C_S_NO IN" +
"( SELECT DISTINCT S_NUMBER FROM OTG.S_R_VAL AS STG WHERE S_NUMBER NOT IN(SELECT S_NO FROM OTG.R_VAL AS REV WHERE STG.S_NUMBER = REV.S_NO ))";
//Statement statement;
try {
connection = DatabaseConnection.getCon();
statement = connection.createStatement();
statement1 = connection.createStatement();
ResultSet SQ = statement.executeQuery(SSQ);
ResultSet DS = statement.executeQuery(SDS);
ResultSet SR = statement.executeQuery(SSR);
ResultSet SO = statement.executeQuery(SSO);
while (rs.next() && SR.next(){
String res1 = rs.getString("S_NUMBER");
String res2 = SR.getString("S_NO");
StringBuffer updateQuery = new StringBuffer();
if (res1.equals(res2)) {
throw new RuntimeException(String.format("%s and %s aren't equal at common position %d",
res1, res2));
}else
{
throw new RuntimeException("The two ResultSets contains different number of columns!");
}
}
connection.commit();