View mysql global configuration and change the character set

  1. View Global configuration
    show global variables
  2. View profile path
    show global variables like "% datadir% ";
  3. Change the database or table character set is utf8
    the ALTER Database Character the SET utf8 or alter table tablename character set utf8

Guess you like

Origin blog.csdn.net/tc291695377/article/details/91893897