/ Published in: MySQL
Con estas instrucciones se pueden corregir los caracteres latinos que hayan sido almacenados erróneamente en una base de datos MySQL
Expand |
Embed | Plain Text
UPDATE tabla SET campo = convert( convert(campo USING BINARY) USING utf8); ALTER TABLE tabla CHARSET = utf8; ALTER DATABASE basedatos CHARSET = utf8;
You need to login to post a comment.
