Mysql Common commands [Absolute Essence]

Source: Internet
Author: User
Tags mysql host
Test environment: mysql5.0.45 [Note: You can use mysqlSELECTVERSION (); in mysql to view the database version]

Test environment: mysql 5.0.45 [Note: You can use mysql select version (); to view the database VERSION in mysql]

1. Connect to MYSQL.

Format: mysql-h host address-u user name-p User Password

1. Connect to MYSQL on the local machine.

First, open the DOS window, enter the mysql \ bin directory, type the mysql-u root-p command, and press enter to prompt you to enter the password. note that there can be space or space before the user name, but there must be no space before the password; otherwise, you can re-enter the password.

If you have just installed MYSQL, the Super User root has no password, so press enter to enter MYSQL. The MYSQL prompt is: mysql>

2. Connect to MYSQL on the remote host. Assume that the IP address of the remote host is 110.110.110.110, the user name is root, and the password is abcd123. Enter the following command:

Mysql-h110.110.110.110-u root-p 123)

3. exit MYSQL command: exit (Press ENTER)

2. Change the password.

Format: mysqladmin-u username-p old password New password

1. Add a password ab12 to the root user. First, enter the mysql \ bin directory under DOS, and then type the following command

Mysqladmin-u root-password ab12

Note: because the root account does not have a password at the beginning, the old-p password can be omitted.

2. Change the root password to djg345.

Mysqladmin-u root-p ab12 password djg345

3. Add new users.
(Note: Unlike the above, the following commands in the MYSQL environment are followed by a semicolon as the command Terminator)

Format: grant select on database. * to username @ login host identified by "password"

1. Add a user named "test1" with the password "abc" so that he can log on to any host and have the permission to query, insert, modify, and delete all databases. First, use the root user to connect to MYSQL, and then type the following command:

Grant select, insert, update, delete on *. * to test1 @ "%" Identified by "abc ";

However, the added users are very dangerous. If someone knows the password of test1, then he can log on to your mysql database on any computer on the internet and do whatever he wants for your data. See solution 2.

2. Add a user named "test2" with the password "abc" so that the user can only log on to localhost and query, insert, modify, and delete the database mydb (localhost refers to the local host, that is, the host of the MYSQL database ),

In this way, the user knows the password of test2 and cannot directly access the database from the internet. He can only access the database through the web page on the MYSQL host.

Grant select, insert, update, delete on mydb. * to test2 @ localhost identified by "abc ";

If you do not want test2 to have a password, you can run another command to remove the password.

Grant select, insert, update, delete on mydb. * to test2 @ localhost identified by "";

Next I will perform database operations in MYSQL. Note: you must first log on to MYSQL. The following operations are performed at the MYSQL prompt and each command ends with a semicolon.

I. Operation Skills

1. If you forget the extra points after you press Enter when making the command, you don't have to repeat the command. You just need to press a semicolon to press Enter.

That is to say, you can divide a complete command into several lines, and then use a semicolon as the end sign to complete the operation.

2. You can use the cursor to bring up or down the previous commands.

Ii. Display commands

1. display the list of databases on the current database server:

Mysql> show databases;

Note: the mysql database contains the MYSQL system information. We change the password and add new users to use this database for operations.

2. display data tables in the database:

Mysql> USE Database Name;
Mysql> show tables;

3. display the data table structure:

Mysql> DESCRIBE table name;

4. Create a database:

Mysql> create database name;

5. Create a data table:

Mysql> USE Database Name;
Mysql> create table Name (field name VARCHAR (20), field name CHAR (1 ));

6. delete a database:

Mysql> drop database name;

7. delete a data table:

Mysql> drop table name;

8. Clear records in the table:

Mysql> delete from table name;

9. display the records in the table:

Mysql> SELECT * FROM table name;

10. insert records into the table:

Mysql> insert into table name VALUES ("hyq", "M ");

11. Update table data:

Mysql-> UPDATE table name: SET field name: 1 = 'a'; field name: 2 = 'B' WHERE field name: 3 = 'C ';

12. load data into a data table in text mode:

Mysql> load data local infile "D:/mysql.txt" into table name;

13. Import the. SQL FILE command:

Mysql> USE Database Name;
Mysql> SOURCE d:/mysql. SQL;

14. Change the root password on the command line:

Mysql> UPDATE mysql. user SET password = PASSWORD ('new password') WHERE User = 'root ';
Mysql> flush privileges;

15. display the Database Name of use:

Mysql> select database ();

16. display the current user:

Mysql> select user ();

3. An instance for creating a database, creating a table, and inserting data

Drop database if exists school; // Delete if SCHOOL exists

Create database school; // create a database SCHOOL

Use school; // open the SCHOOL library

Create table teacher // create table TEACHER
(
Id int (3) auto_increment not null primary key,
Name char (10) not null,
Address varchar (50) default 'shenzhen ',
Year date
); // Table creation ends

// Insert fields as follows
Insert into teacher values (", 'allen ', 'dalian Zhongyi', '2017-10-10 ′);
Insert into teacher values (", 'jack', 'dalian No. 2 middle school ', '2017-12-23 ′);

If you type the preceding command at the mysql prompt, debugging is not convenient.

(1) You can write the above commands into a text file as they are, for example, school. SQL, then copy to c :\\, and enter the directory \ mysql \ bin in DOS status, and then type the following command:

Mysql-uroot-p password <c: \ school. SQL

If it succeeds, no display is displayed for a blank row. If there is an error, a prompt is displayed. (The preceding command has been debugged. You only need to remove the // annotation to use it ).

(2) or use mysql> source c: \ school. SQL after entering the command line. You can also import the school. SQL file to the database.

4. Transfer text data to the database

1. Text data should conform to the format: field data should be separated by the tab key, and the null value should be replaced by \ n. For example:

3 rose Dalian No. 2 Middle School 1976-10-10

4 mike Dalian No. 1 1975-12-23

Assume that you save these two sets of data as a school.txt file and put it under the c-drive root directory.

2. data input command load data local infile "c: \ school.txt" into table name;

Note: You 'd better copy the file to the \ mysql \ bin directory and use the use command to create the database where the table is located.

V. Back up the database: (execute the command in the DOS directory)

1. Export the entire database

The exported files are stored in the mysql \ bin directory by default.

Mysqldump-u username-p Database Name> exported file name

Mysqldump-u user_name-p123456 database_name> outfile_name. SQL

2. Export a table

Mysqldump-u user name-p database name Table Name> exported file name

Mysqldump-u user_name-p database_name table_name> outfile_name. SQL

3. Export a database structure

Mysqldump-u user_name-p-d-add-drop-table database_name> outfile_name. SQL

-D no data-add-drop-table add a drop table before each create statement

4. Export with language Parameters

Mysqldump-uroot-p-default-character-set = latin1-set-charset = gbk-skip-opt database_name> outfile_name. SQL

1. Back up the database
Mysqldump-uroot-p test_db> test_db. SQL
2. Restore the database
Mysql-uroot-p test_db <test_db. SQL
3. Create Permissions
Grant all privileges on test_db. * to test_db @ 'localhost' identified by '123 ';
Compatible with modes earlier than MYSQL:
Update mysql. user set password = old_password ('000000') where user = 'test _ db ';
4. forgot password
In the "my. cnf" or "my. ini" file, add "skip-grant-tables" to the "mysqld" configuration section, and restart mysql to log on and change the root password.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.