14 March 2014

Using this the query in this snippet enables you to convert character set to utf8. This works in mysql or mysql like database, drop-in databases like mariadb for an example.

Source code viewer
  1. alter table MY_TABLE convert to character set utf8 collate utf8_unicode_ci;
Programming Language: MySQL