Discuss / Java / 就是这么简单粗暴

就是这么简单粗暴

Topic source

Frank丶cic

#1 Created at ... [Delete] [Delete and Lock User]
    static String buildSelectSql(String table, String[] fields) {
        // TODO:
       return "SELECT " + String.join(", ", fields) + " FROM " + table;
    }

Frank丶cic

#2 Created at ... [Delete] [Delete and Lock User]

^-^

static String buildSelectSql(String table, String[] fields) {
    // TODO:
    var sql = new StringJoiner(", ", "SELECT ", " FROM " + table);
    for (String field : fields) {
        sql.add(field);
    }
    return sql.toString();
}

  • 1

Reply