sql >> Base de Datos >  >> Database Tools >> phpMyAdmin

phpmyadmin mueve texto de un campo a otro

UPDATE your_table 
    SET extra = substring_index(email, ' ', -1), 
        email = substring_index(email,' ',1);