MySQL Database common operations

Source: Internet
Author: User

1. Authorization for all Users


GRANT all privileges on * * to ' user name ' @ '% ' identified by ' password '


2. Database-based operations


(1) Login MySQL database: mysql-u root-p, enter the password before entering

(2) View all databases: show databases;

(3) Delete a database: Drop database name

(4) Entering a database: Use database name

(5) View all tables for a database: show tables;

(6) View all records in a table: SELECT * FROM table name

(7) View all records in a table: Desc table Name


3. Import and export of data


Export of data

With command: mysqldump-u root-p database name > Export file name. sql

If you export the form, enter the table name after the database name.

Import of data

Create an empty database under the MySQL interactive command, and use this database to enter the command: The file name of the source import.



MySQL Database common operations

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.