MySQL常用操作
Posted 火热火热7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL常用操作相关的知识,希望对你有一定的参考价值。
1.导入数据库
1 use 数据库; 2 source 路径/文件名;
2.新建用户,此处的"localhost",是指该用户只能在本地登录,如果想远程登录的话,将"localhost"改为"%",表示在任何一台电脑上都可以登录。也可以指定某台机器可以远程登录。
1 mysql> insert into mysql.user(Host,User,Password) values("localhost","test",password("111111"));
3.设置用户权限
1 //@"%" 表示对所有非本地主机授权,不包括localhost 2 3 //对localhost授权:加上一句grant all privileges on testDB.* to test@localhost identified by ‘111111‘;即可。 4 5 //testDB的所有权限 6 mysql>grant all privileges on testDB.* to test@localhost identified by ‘111111‘; 7 8 //testDB的部分权限 9 mysql>grant select,update on testDB.* to test@localhost identified by ‘111111‘; 10 11 //test用户对所有数据库都有select,delete,update,create,drop 权限。 12 mysql>grant select,delete,update,create,drop on *.* to [email protected]"%" identified by "111111"; 13 14 //刷新系统权限表 15 mysql>flush privileges;
4.修改指定用户密码
1 mysql>update mysql.user set password=password(‘新密码‘) where User="test" and Host="localhost"; 2 3 mysql>flush privileges;
5.
以上是关于MySQL常用操作的主要内容,如果未能解决你的问题,请参考以下文章