首页 > 代码库 > Mysql登陆、退出、更改环境编码

Mysql登陆、退出、更改环境编码

 

登录:

mysql -h[数据库地址] -u[username] -p[password] -P[端口]     //大写P表示端口,小写p表示密码

例如:mysql -hlocalhost -uroot -proot -P3306

技术分享

 

退出:

quit,exit;
技术分享

技术分享


修改数据库的环境编码:

set names utf8;  

技术分享

 

Mysql登陆、退出、更改环境编码