18 common commands in MySQL command line

18 common commands in MySQL command line

In daily website maintenance and management, a lot of SQL statements are used.
Proficient use has many benefits for website management, especially when managing a group of sites.

Here are some commonly used commands for your reference.

1. Display database
show databases
Display Table
show tables;

2. Create a user <br /> Create a root user with a password of 123

use mysql; 
grant all on *.* to root@'%' identified by '123' with grant option; 
commit;

3. Change password

grant all on *.* to xing@'localhost' identified by '123456' with grant option; 
update user set password = password('newpwd') where user = 'xing' and host='localhost'; 
flush privileges;

4. Create a database testdb:

create database testdb;

5. Preventive creation of database:

create database if not testdb;

6. Create a table:

use testdb; 
create table table1( 
username varchar(12), 
password varchar(20));

7. Preventive creation of table aaa:

create table if not exists aaa(ss varchar(20));

8. View the table structure:

describe table1;

9. Insert data into table1:

insert into table1(username,password) values 
('leizhimin','lavasoft'), 
('hellokitty','hahhahah'); 
commit;

10. Query table table1:

select * from table1;

11. Change data:

update table1 set password='hehe' where username='hellokitty'; 
commit;

12. Deleting data:

delete from table1 where username='hellokitty'; 
commit;

13. Add a column to the table:

alter table table1 add column( 
 sex varchar(2) comment 'Gender', 
 age date not null comment 'age' 
); 
commit;

14. Modify table structure

Create a table table1 from the query:

create table tmp as 
select * from table1;

15. Delete table table1:

drop table if exists table1; 
drop table if exists tmp;

16. Back up the database testdb

mysqldump -h 192.168.3.143 -u root -p pwd -x --default-character-set=gbk >C:\testdb.sql

17. Delete the database testdb

drop database testdb;

18. Restore the testdb database <br /> First, create the testdb database, and then use the following command to perform local recovery

mysql -u root -pleizhimin testdb <C:\testdb.sql

These 18 MYSQL commands are often used by administrators in daily maintenance. Proficient use of these commands will make your work very easy.

You may also be interested in:
  • Detailed explanation of how to use CMD command to operate MySql database
  • Mysql command line mode access operation mysql database operation

<<:  How to deploy Confluence and jira-software in Docker

>>:  Detailed explanation of JS variable storage deep copy and shallow copy

Recommend

How to mount a disk in Linux

When using a virtual machine, you may find that t...

Install Docker on CentOS 7

If you don't have a Linux system, please refe...

v-for directive in vue completes list rendering

Table of contents 1. List traversal 2. The role o...

Detailed steps for smooth transition from MySQL to MariaDB

1. Introduction to MariaDB and MySQL 1. Introduct...

Javascript design pattern prototype mode details

Table of contents 1. Prototype mode Example 1 Exa...

What to do if you forget your password in MySQL 5.7.17

1. Add skip-grant-tables to the my.ini file and r...

Share 8 CSS tools to improve web design

When one needs to edit or modify the website desi...

CSS menu button animation

To write a drop-down menu, click the button. The ...

VMware Workstation 14 Pro installation and activation graphic tutorial

This article shares the installation and activati...

JavaScript implements class lottery applet

This article shares the specific code of JavaScri...

Usage and scenario analysis of npx command in Node.js

npx usage tutorial Tonight, when I was learning V...

Let’s take a look at JavaScript precompilation (summary)

JS running trilogy js running code is divided int...

Linux 6 steps to change the default remote port number of ssh

The default ssh remote port in Linux is 22. Somet...

How to achieve seamless token refresh

Table of contents 1. Demand Method 1 Method 2 Met...