This article describes the examples of creating accounts, authorization, data export and import operations in MySQL database. Share with you for your reference, the details are as follows: 1. Account creation and authorization grant all privileges on *.* to 'yangxin'@'%' identified by 'yangxin123456' with grant option;
2. Check user permissions show grants for root; 3. Reclaim permissions revoke create on *.* from 'yangxin'; 4. Delete User drop user test; 5. Change password 1> Update mysql.user table # Before mysql5.7 update mysql.user set password=password('123456') where user='root'; # After mysql5.7 update mysql.user set authentication_string=password('123456') where user='root'; 2> Use the set password command grammar: set password for 'user name'@'login address'=password('password') 3>mysqladmin Syntax: mysqladmin -u username -p old password password new password Remember to refresh permissions: flush privileges; Data export: 1. Export structure but not data mysqldump -d database name -uroot -p > xxx.sql 2. Export data but not structure mysqldump -t database name -uroot -p > xxx.sql 3. Export data and table structure mysqldump database name -uroot -p > xxx.sql 4. Export the structure of a specific table mysqldump -uroot -p -B database name --table table name> xxx.sql #mysqldump [OPTIONS] database [tables] Import data: mysql -uroot -p database name < file name or: Then select the database to be imported: #use database; #source /tmp/xxx.sql Readers who are interested in more MySQL-related content can check out the following topics on this site: "Summary of MySQL Index Operation Skills", "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills". I hope this article will be helpful to everyone's MySQL database design. You may also be interested in:
|
<<: How to implement web stress testing through Apache Bench
>>: Detailed steps to install Sogou input method on Ubuntu 20.04
Table of contents 1. Introduction 2. About vue-si...
Before introducing the GROUP BY and HAVING clause...
Table of contents Debounce Throttle Summarize Deb...
This article uses an example to describe the solu...
The cut command in Linux and Unix is used to cu...
Table of contents 1. What is a hook? 2. Why does ...
Preface The origin is a question 1: If your umask...
This article mainly explains how to deploy Elasti...
use <div id="app"> <router-lin...
1. HTML font color setting In HTML, we use the fo...
During my internship in my senior year, I encount...
Error description: 1. After installing Nginx (1.1...
1. Flex is the abbreviation of Flexible Box, whic...
HTML operation principle: 1. Local operation: ope...
Introduction to JWT What is JWT The full name is ...