侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130555 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

mysql查看用户列表,查看用户授权,创建用户授权,删除用户

2024-05-10 星期五 / 0 评论 / 0 点赞 / 6 阅读 / 395 字

查看用户列表select from host,user,password from mysql.user;查看授权show grants for root@localhost;建用户授权grant a

查看用户列表
select from host,user,password from mysql.user;

查看授权
show grants for root@localhost;

建用户授权
grant all privileges on . to root@localhost identified by '123456';

删除用户
delete from mysql.user user='root'
delete from mysql.user where user='root' and ip='localhost';

广告 广告

评论区