5.7数据库创建用户
基本的创建语句:grant all on . to 'root'@'%' identified by '123456'
grant all
授予默认权限的操作,还有一种grant to privilege
授予全部权限on *.*
表示所有数据库下的所有表to 'root'@'%'
授予的角色信息,该例中表示:所有地方都可以登录的root用户identified by '123456'
授予的角色密码
基本的创建语句:grant all on . to 'root'@'%' identified by '123456'
grant all
授予默认权限的操作,还有一种 grant to privilege
授予全部权限on *.*
表示所有数据库下的所有表to 'root'@'%'
授予的角色信息,该例中表示:所有地方都可以登录的root用户identified by '123456'
授予的角色密码