MySQL超级权限SUPER,也叫超级用户,是MySQL数据库管理系统中的一种特殊用户,拥有最高权限,能够拥有所有的数据库操作权限,包括创建、删除、修改和查询数据库等操作。
要获取MySQL超级权限SUPER,需要按照以下步骤操作:
grant all privileges on *.* to 'username'@'hostname' identified by 'password' with grant option;其中,username表示新建用户的用户名;hostname表示新建用户的主机名;password表示新建用户的密码;
本文链接:http://task.lmcjl.com/news/10224.html