sql >> Base de Datos >  >> RDS >> Mysql

Dividir valores separados por comas en filas individuales

Esto es algo que normalmente se hace mejor en algo que no sea SQL, como Java.

El pseudocódigo podría ser:

List<String> names = jdbcTemplate.query("select A from your_table", new RowMapper() {
    public Object mapRow(ResultSet resultSet, int i) throws SQLException {
        return resultSet.getString(1);
    }
});

for (String name : names) {
    String[] strings = name.split("[\\w,]");
    for (int i = 0; i < strings.length; i++) {
        String string = strings[i];
        jdbcTemplate.update("insert ignore into new_table (B) values (?)", string);
    }

}