Mysql
 sql >> Database >  >> RDS >> Mysql

Dividi i valori separati da virgole in singole righe

Questo è qualcosa che in genere è meglio fare in qualcosa di diverso da SQL, come java.

Lo pseudocodice potrebbe essere:

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);
    }

}