In daily website maintenance and management, a lot of SQL statements are used. Here are some commonly used commands for your reference. 1. Display database 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:
|
<<: How to deploy Confluence and jira-software in Docker
>>: Detailed explanation of JS variable storage deep copy and shallow copy
When using a virtual machine, you may find that t...
If you don't have a Linux system, please refe...
Table of contents 1. List traversal 2. The role o...
1. Introduction to MariaDB and MySQL 1. Introduct...
Table of contents 1. Prototype mode Example 1 Exa...
1. Add skip-grant-tables to the my.ini file and r...
When one needs to edit or modify the website desi...
To write a drop-down menu, click the button. The ...
This article shares the installation and activati...
This article shares the specific code of JavaScri...
npx usage tutorial Tonight, when I was learning V...
JS running trilogy js running code is divided int...
The default ssh remote port in Linux is 22. Somet...
Optimizing large amounts of database data is a hu...
Table of contents 1. Demand Method 1 Method 2 Met...