mysql命令

开启关闭服务

启动MySQL服务:net start mysql

关闭MySQL服务:net stop mysql

修改root用户的密码

mysqladmin -uroot -p password

开启mysql远程访问权限

1、登入mysql

mysql -uroot -p 

2、切换到mysql数据库
use mysql;

3、查看用户信息
select user,host from user;

4、   将host字段的值改为%就表示在任何客户端机器上能以root用户登录到mysql服务器,建议在开发时设为%。   

use mysql;

grant all privileges  on *.* to root@'%' identified by "password";

说明: identified by "password"; 是设置root用户的密码是password
相当于更新了root用户的密码;

至此,完毕;

参考博客

https://my.oschina.net/liting/blog/397682

在mysql命令行模式下

查看当前选择的数据库:
mysql> select database();

查看当前数据库的所有表:
mysql> show tables;

查看表创建信息:
mysql> show create table tb_user;

你可能感兴趣的:(mysql命令)