MySQL database terminal - common operation command codes

MySQL database terminal - common operation command codes

1. Add users

 //Create a new usercreate user username identified by 'password'; 
//View existing users and host names select user,host from mysql.user; 

2. Change the username and host

 //Change the username rename user 'original username'@'host' to 'new username'@'host'; 

3. Change your password

 //Change password mysqladmin -u user -p original password password new password 

4. Delete User

 //Delete user drop user username@'host'; 

5. Query all users and hosts

 //View existing users and host names select user,host from mysql.user;

6. View the database

 //View the database SHOW DATABASES; 

7. Create a database

 //Create a database CREATE DATABASE database name; 

8. View database definition information

 //View the database definition information SHOW CREATE DATABASE database name; 

9. Delete the database

 //Delete the database DROP DATABASE database name; 

10. Refresh permissions

 //Flush the MySQL privilege table FLUSH PRIVILEGES; 

11. Common commands are as follows

 //Login to mysql -u user -p password mysql -u user -p password -h host IP
 
 
//Change the command name prompt \u@\h \d
prompt mysql \d>
prompt mysql (\d)>
 
//Display the current server versionSELECT VERSION();
//Display the current dateSELECT NOW();
//Display the current userSELECT USER();
//Set the client encoding SET NAMES gbk;
//Show the opened database SELECT DATABASE();
//View the port show global variables like 'port';
 
//View existing users and host names select user,host from mysql.user;
 
//Create a new usercreate user username identified by 'password'; 
 
//Delete user drop user username@'host';
 
//Change the username rename user 'original username'@'host' to 'new username'@'host';
 
//Change password mysqladmin -u user -p original password password new password update mysql.user set password = password('password') where user = 'user' and host = 'host';
 
//Authorize grant all privileges on zhangsanDb.* to zhangsan@'%' identified by 'zhangsan';
all privileges: All privileges.
select: Read permission.
delete: Delete permission.
update: Update permission.
create: Create permission.
drop: delete database and table permissions.
 
Username@host represents the authorized user and the IP address that the user is allowed to log in. There are several types of Host:
localhost: This user is only allowed to log in locally and cannot log in remotely.
%: Allow remote login from any machine except the local machine.
192.168.52.32: The specific IP means that the user is only allowed to log in from the specific IP.
 
//View the information of newly added database permissions select user,Db,host,select_priv,insert_priv,update_priv,delete_priv from mysql.db where user='zhangsan';
 
//Flush the MySQL privilege table FLUSH PRIVILEGES;
 
//Create a database CREATE DATABASE database name;
CREATE DATABASE IF NOT EXISTS database name; -- Create it if it does not exist. CREATE DATABASE IF NOT EXISTS database name CHARACTER SET gbk;
//Modify the database ALTER DATABASE database name CHARACTER SET = utf8;
//View the database SHOW DATABASES;
//View the database definition information SHOW CREATE DATABASE database name;
//Delete the database DROP DATABASE database name;
//If the database exists, delete it DROP DATABASE IF EXISTS database name;
//Switch database USE database name;
//View all tables in the database SHOW TABLES;
//View a database table SHOW TABLES FROM database name;
//View the table structure DESC table name;
SHOW COLUMNS FROM table name;
//View the table statement SHOW CREATE TABLE table name;
//Delete table DROP TABLE table name;
 
Modify table // delete column alter TABLE table name DROP column name;
//Change the name of the table RENAME TABLE table name TO new table name;
//Modify the table character set alter TABLE table name CHARACTER SET character set //Modify the column name alter TABLE table name CHANGE column name new column name column type;
//Add columns alter table table name add column name column type;

This is the end of this article about MySQL database terminal - common operation command codes. For more relevant MySQL database common operation command codes, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Python MySQL database basic operations and project examples
  • MySQL database aggregate query and union query operations
  • Detailed basic operations on data tables in MySQL database
  • MySQL database operations and data types
  • MySQL learning database operation DML detailed explanation for beginners
  • MySQL learning to create and operate databases and table DDL for beginners
  • MySQL database data table operations

<<:  A few things about favicon.ico (it’s best to put it in the root directory)

>>:  Text pop-up effects implemented with CSS3

Recommend

Detailed explanation of the practical use of HTML table layout

When is the table used? Nowadays, tables are gene...

How to use skeleton screen in vue project

Nowadays, application development is basically se...

JavaScript data structure bidirectional linked list

A singly linked list can only be traversed from t...

MySQL data type details

Table of contents 1. Numeric Type 1.1 Classificat...

How to inherit CSS line-height

How is Line-height inherited?Write a specific val...

A quick guide to Docker

Docker provides a way to automatically deploy sof...

Analysis of the principle and usage of MySQL continuous aggregation

This article uses examples to illustrate the prin...

Several important MySQL variables

There are many MySQL variables, some of which are...

How to change the root password in a container using Docker

1. Use the following command to set the ssh passw...

How to modify the scroll bar style in Vue

Table of contents First of all, you need to know ...

Mysql example of splitting into multiple rows and columns by specific symbols

Some fault code tables use the following design p...

Graphical explanation of the underlying principle of JavaScript scope chain

Table of contents Preface Scope 1. What is scope?...

MySql fuzzy query json keyword retrieval solution example

Table of contents Preface Option 1: Option 2: Opt...

Detailed explanation of MySQL 8.0.18 commands

Open the folder C:\web\mysql-8.0.11 that you just...