mysql命令
1、以后台进程启动mysql
systemctl start mysqld
重新启动Mysql
systemctl restart mysqld
2、进入mysql命令行,用户名root,密码root
mysql -uroot -proot
3、查看所有的库,注意每执行一个Mysq命令都要最后的位置加引号
show databases;
4、查看用户
select user,host from mysql.user;
5、赋予用户权限
先创建账户:create user ‘用户名’@’访问主机’ identified by ‘密码’;
再赋予权限:grant 权限列表 on 数据库 to ‘用户名’@’访问主机’ ;(修改权限时在后面加with grant option)
示例:
create user 'root'@'%' identified by 'root';
grant ALL PRIVILEGES ON *.* to 'root'@'%';
6、查看某个数据库中的所有表
select table_name from information_schema.tables where table_schema='bonnie';
7、进入某个库
use bonnie;