MySQL Create a database and delete the database method

Source: Internet
Author: User
Tags mysql create create database

MySQL tutorials How to create a database tutorial and delete a database

Creating table Syntax
CREATE DATABASE <database>;
Quite simply, look at a simple example

Mysql>
Mysql>
mysql> CREATE DATABASE myDatabase;
Query OK, 1 row affected (0.03 sec)

Mysql>
mysql> drop Database myDatabase;
Query OK, 0 rows affected (0.01 sec)

Mysql>
Under Unix, database and table names are case sensitive.
Under Windows, this restriction does not apply
Mysql>

Instance two, create a database and set it as the current database

Mysql>
Mysql>
mysql> CREATE DATABASE myDatabase;
Query OK, 1 row affected (0.02 sec)

mysql> use myDatabase; --Select it manually
Database changed
mysql> drop Database myDatabase;
Query OK, 0 rows Affected (0.00 sec)

Mysql>
Mysql>

In combination, we use the Create data, create the table, and then delete the database.

mysql> CREATE DATABASE myDatabase DEFAULT CHARACTER SET latin2 COLLATE latin2_czech_ci;
Query OK, 1 row affected (0.02 sec)

Mysql>
Mysql>
Mysql>
mysql> use myDatabase;
Database changed
Mysql>
mysql> CREATE TABLE myTable
-> (
-> C1 CHAR (10)
->);
Query OK, 0 rows affected (0.03 sec)

Mysql>
mysql> drop table myTable;
Query OK, 0 rows Affected (0.00 sec)

Mysql>
mysql> drop Database myDatabase;
Query OK, 0 rows Affected (0.00 sec)

Mysql>
mysql> use test;
Database changed

Related Article

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.