欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

为MySQL数据库添加新用户_MySQL

程序员文章站 2024-04-06 14:57:43
...
  刚安装完的MySQL中只有一个默认的用户,这就是root@localhost,如果需要使数据库被更多的用户访问使用,就需要添加新用户, 在windows可以用下面两种方法来添加:

  使用GRANT语句:

  grant select on test.* to 'yonghu'@'%' identified by 'some_pass' with grant option;

  例子表示增加一 个用户,名称是yonghu,来自任何位置,密码是some_pass可以对test数据库的任何表进行select命令。

  直接向grant表中插入用户:

  shell>mysql --user=root mysql

  mysql>insert into user (Host,User,Password) values('localhost','shagua','');

  mysql>flush privileges;表示将来自本机的用户,名叫shagua,密码为空,添加入数据库。

相关标签: 数据库 用户