MySQL add user, new database, user authorization, delete user, change password (note that each line followed by A; indicates that a command statement ends):
1. Create a new user
@>mysql-u root-p
@> Password
mysql> INSERT INTO Mysql.user (Host,user,password) VALUES ("localhost", "Test", Password ("1234"));
If the error is resolved by: Https://i.cnblogs.com/PostDone.aspx?postid=7782867&actiontip=%E5%8F%91%E5%B8%83%E6%88%90%E5%8A%9F
This creates a user named: Test with a password of: 1234.
Note: "localhost" here means that the user can only log on locally and cannot telnet to another machine. If you want to telnet, change "localhost" to "%", which means you can log on on any computer. You can also specify that a machine can log on remotely.
mysql>exit;
@>mysql-u test-p
@> Enter password
Mysql> Login Successful
2. Authorizing the user
Authorization format: Grant permissions on database. * To User name @ login host identified by "password";
- Log in to MySQL (with root) and log in as root here:
@>mysql-u root-p
@> Password
- First create a database (TestDB) for the user:
Mysql>create database TestDB;
- The authorization test user has all the permissions of the TestDB database (all permissions for a database):
Mysql>grant all privileges in testdb.* to [e-mail protected] identified by ' 1234 ';
Mysql>flush privileges;//Refresh System Permissions Table
Format: Grant permissions on database. * To User name @ login host identified by "password";
- If you want to specify partial permissions to a user, you can write:
Mysql>grant select,update on testdb.* to [e-mail protected] identified by ' 1234 ';
Mysql>flush privileges; Refresh System Permissions Table
- The authorization test user has some permissions for all databases:
Mysql>grant Select,delete,update,create,drop On * * to [e-mail protected] "%" identified by "1234";
The test user has Select,delete,update,create,drop permissions on all databases.
@ "%" indicates authorization for all non-local hosts, excluding localhost. (The localhost address is set to 127.0.0.1, if set to the real local address, do not know whether it can, no authentication.) )
Authorization to localhost: plus a grant all privileges on testdb.* to [email protected] identified by ' 1234 ';
3. Delete a user
@>mysql-u root-p
@> Password
Mysql>delete from user Where user= ' test ' and host= ' localhost ';
Mysql>flush privileges;
Mysql>drop database TestDB; Delete a user's database
Delete account and permissions: >drop user username @ '% ';
>drop user username @ localhost;
4. Modify the specified user password
@>mysql-u root-p
@> Password
Mysql>update Mysql.user Set Password=password (' New password ') where user= "test" and host= "localhost";
Mysql>flush privileges;
5. List all databases
Mysql>show database;
6. Switching the database
Mysql>use ' database name ';
7. List all Tables
Mysql>show tables;
8. Display the data table structure
Mysql>describe table name;
9. Deleting databases and data tables
Mysql>drop database name;
Mysql>drop table Data Sheet name;
Data from the network, to be collated thank you
If the error is resolved by: Https://i.cnblogs.com/PostDone.aspx?postid=7782867&actiontip=%E5%8F%91%E5%B8%83%E6%88%90%E5%8A%9F
This article references: http://blog.csdn.net/h1017597898/article/details/9815987
MYSQL User Management Add users, create new database, user authorization, delete user, change password (note that each line followed by A; indicates that a command statement ends):