输入root密码
show databases;
use my_database;
select * from my_table;
发现乱码
设置编码
set names utf-8;
或者
set names gb2312;
在此验证下
select * from my_tabel;