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

MySQL - Elimina il valore nella riga, invece di eliminare la riga

Puoi provare questo -

UPDATE users SET eat = REPLACE(eat, 'banana', '') where eat like '%banana%';

Questo sostituirebbe solo banana da eat colonna dove è presente.

Aggiorna

Esegui il ciclo dei dati e sostituisci quei valori. Questo potrebbe aiutare -

$check_val = 'banana';

//select those rows first
"select id, eat from users where eat like '%" . $check_val . "%'"

foreach($data as $v) {

    $temp= explode(',', $v['eat']);
    $temp= array_map(function($t) use($check_val) {
        return (strpos($t, $check_val) !== false) ? null : $t;
    }, $temp);
    $temp = array_filter($temp);
    $v['eat']= implode(',', $temp);

    "update users set eat= '" . $v['eat'] . "' where eat like '%" . $check_val . "%'"
}