Usage Environment In cmd mode, enter mysql --version (to view the installed version of MySQL). The complete command can be obtained by using mysql --help. The Mysql version used in this test is mysql5. SQL used in this test: db_yves.sql: Link: https://pan.baidu.com/s/1vZWWgAp7TS48nrBiMDpcaQ Extraction code: vveu 1. Connect to the database Without the help of database management software (such as Navicat, etc.), connect to the MySQL software library server through DOS and then operate the database. The general format for connecting to a database is: mysql -P port number -h mysql host name or IP address -u username -p Explanation: (-P uppercase P stands for port, lowercase p stands for password, h stands for host name or ip, u stands for user)"
1. Local connection If the command line is on the local machine where mysql is located and the default port 3306 is used, the statement can be simplified to:
2. Remote connection Note: When using a remote connection, the connection user and the user's current IP address should be the allowed user and allowed IP in the remote database, otherwise the connection is not allowed.
After successful login, the following figure is shown: 2. Operate the database After successfully logging into the MySQL database using the username and password, you can operate the database within the scope of the user's permissions. db_yves is a data name I created myself. When operating data, each statement is marked with ; or \g to end. 1. View all databases
2. Create a database
3. Use a database
4. Display all tables in the database
5. View the table structure
6. Delete the database
About command line mode database file import and export: In command line mode, you can import and export sql files by entering CMD. Export database file Including exporting the database to the specified table. 1. Export the structure and data of the database db_yves
2. Export the structure of the database db_yves (add -d parameter):
3. Export the structure and data of the customers table in the database db_yves:
4. Export the structure of the customers table in the database db_yves (add the -d parameter):
Importing a database file Import the database file db_yves.sql into the database db_yves.
Other commonly used phrases SHOW STATUS, which displays extensive server status information; SHOW CREATE DATABASE and SHOW CREATE TABLE, which are used to display the MySQL statements for creating a specific database or table, respectively; SHOW GRANTS, used to display the security permissions granted to users (all users or specific users); SHOW ERRORS and SHOW WARNINGS are used to display server error or warning messages. Supplementary knowledge: Mysql | Combined where clause to filter data (AND, OR, IN, NOT) MySQL allows the use of multiple where clauses, and the combination of where clauses allows the use of two methods: AND and OR clauses. Operation symbols in the database: AND, OR, IN, NOT. AND:
OR:
IN: It is recommended not to use OR in clauses where IN can be used. IN has good performance and is easy to understand.
NOT: MySQL supports NOT only in the negation of IN, BETWEEN, and EXISTS clauses, which is different from most other databases that support various conditions.
Notice: In a clause that contains both AND and OR, MySQL prioritizes AND operations. It is generally recommended to use () to determine the processing order and eliminate ambiguity. For example: SELECT * FROM products WHERE (products.vend_id= 1002 OR products.vend_id=1003) AND prod_price >= 10; The above article about Mysql command line mode access and operation of MySQL database operation is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Analysis of the implementation process of three modes of VMWare network adapter
>>: Vue implements dynamic circular percentage progress bar
routing vue-router4 keeps most of the API unchang...
Table of contents 1. Draw a circle 2. Circle move...
a href="#"> After clicking the link, ...
When developing mobile apps, you often encounter ...
challenge: Converts the characters &, <, &...
Preface In WEB development, we often involve cros...
This article example shares the specific code of ...
As shown below: name describe character varying(n...
Recently, when I was sorting out the details of d...
1 Introduction When designing a database, it is i...
The reason is that all files are encoded in utf8. ...
Table of contents Brief description: 1. Four char...
Table of contents Logical Layering Separate busin...
Table of contents 1. Characteristics of JS 1.1 Mu...
Effect: First create five vue interfaces 1.home.v...