从数据库

时间:2017-09-22 19:58:25

标签: java jdbc

我在数据库中有一些表。他们有一些特殊的模式。例如,考虑我有表employee,然后是其他一些具有相同模式的表:

table 1:employee
table 2:employee_X
table 3:employee_Y

我想检查这些表是否包含数据,如果有,那么我必须为每个表调用一些方法。我正在使用以下代码进行检索。

DatabaseMetaData meta = con.getMetaData();
ResultSet res = meta.getTables(null, null, "My_Table_Name", new String[] {"TABLE"});
while (res.next()) {

    if(rs.getStrin(3).equals(employee)){
        //my code to write data of this table to a file
    }

    if(rs.getString(3).equals(employee_X)){
        //my code to write data to the same file

    }

    if(rs.getString(3).equals(employee_Y)){
        //code to write data to the same file from this table
    }
}

代码工作正常,但我如何能够立即从所有这些表中检索数据,而不是使用三个检查。如果这些表中的任何一个包含我希望将其写入我的文件的数据。我如何能够在更少的代码行中有效地执行此操作?

如果有人可以建议检查这些表中的每一个是否包含数据在单个语句中然后我可以调用我的代码将数据写入文件,那将是很好的。

1 个答案:

答案 0 :(得分:1)

您可以在复杂查询中使用UNION语句。请检查示例:

SELECT id, name FROM employee WHERE id = ?
    UNION
SELECT id, name FROM employee_x WHERE id = ?
    UNION
...

您也可以使用UNION ALL语句代替UNIONUNION返回唯一结果集而不重复的主要区别UNION ALL允许重复。请查看此链接https://www.w3schools.com/sql/sql_union.asp,了解有关union声明的详细说明。

如果您需要使用自定义过滤表创建UNION查询,请查看示例:

Set<String> requiredTables = new HashSet<>();
// fill set with required tables for result query
requiredTables.add("employee");
ResultSet res = meta.getTables(null, null, "My_Table_Name", 
 new String[] {"TABLE"});

List<String> existentTables = new LinkedList<>();
while(res.next()) {
    if (requiredTables.contains(res.getString(3)) {
        existentTables.add(res.getString(3)); 
    }
}

String query = existentTables.stream().map(table -> String.format("SELECT * FROM %s", table)).collect(Collectors.joinning(" UNION "));