MySQL Basics: manipulating databases

Source: Internet
Author: User

MySQL Operations database

1. Create a database

CREATE database name;

2. Show created Database

SHOW DATABASES;

3. Select the database you have created

Use database name;

4. Deleting a database

DROP database name;

5. Database Storage Engine

InnoDB: is a reliable transaction processing engine, it does not support full-text search;

MyISAM: The function is equivalent to MyISAM, but because the data is stored in memory (not disk), it is very fast (especially suitable for temporary tables);

MEMORY: is an extremely high performance engine that supports full text search, but does not support transactional processing.

...

MySQL Basics: manipulating databases

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.