Home >Database >Mysql Tutorial >mysql设置编码_MySQL

mysql设置编码_MySQL

WBOY
WBOYOriginal
2016-06-01 13:17:15926browse

打开mysql

输入root密码

show databases;

use my_database;

select * from my_table;

发现乱码

设置编码

set names utf-8;

或者

set names gb2312;

在此验证下

select * from my_tabel;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn