Convertir datos de latin1 a utf8 en MySQL


/ Published in: MySQL
Save to your folder(s)

Con estas instrucciones se pueden corregir los caracteres latinos que hayan sido almacenados erróneamente en una base de datos MySQL


Copy this code and paste it in your HTML
  1. update tabla set campo = convert( convert(campo using binary) using utf8);
  2. alter table tabla charset = utf8;
  3. alter database basedatos charset = utf8;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.