文章教程

14.4实战演练——数据库的创建和删除

9/17/2020 9:40:31 PM 人评论 次浏览

14.4 实战演练——数据库的创建和删除

登录MySQL,使用数据库操作语句创建、查看和删除数据库,步骤如下。

01 登录数据库。打开Windows命令行,输入登录用户名和密码。

  C:\>mysql –h localhost -u root -p
  Enter password: **

或者打开MySQL 5.5 Command Line Client,只输入用户密码也可以登录。登录成功后显示如下信息。

  Welcome to the MySQL monitor.  Commands end with ; or \g.
  Your MySQL connection id is 2
  Server version: 5.5.13 MySQL Community Server (GPL)
  Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
  Oracle is a registered trademark of Oracle Corporation and/or its
  affiliates. Other names may be trademarks of their respective
  owners.
  Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  mysql>

出现MySQL命令输入提示符时表示登录成功,可以输入SQL语句进行操作。

02 创建数据库zoo,执行过程如下。

  mysql> CREATE DATABASE zoo;
  Query OK, 1 row affected (0.00 sec)

提示信息表明语句成功执行。

查看当前系统中所有的数据库,执行过程如下。

  mysql> SHOW DATABASES;
  +--------------------+
  | Database             |
  +--------------------+
  | information_schema |
  | mysql                |
  | performance_schema |
  | test                  |
  | zoo                  |
  +--------------------+

可以看到,数据库列表中已经有了名称为zoo的数据库,数据库创建成功。

03 选择当前数据库为zoo,查看数据库zoo的信息,执行过程如下。

  mysql> USE zoo;
  Database changed

提示信息Database changed表明选择成功。

查看数据库信息:

  mysql> SHOW CREATE DATABASE zoo \G;
  *************************** 1. row ***************************
         Database: zoo
  Create Database: CREATE DATABASE 'zoo' /*!40100 DEFAULT CHARACTER SET utf8 */

Database值表明当前数据库名称;Create Database值表示创建数据库zoo的语句;后面的是注释信息。

04 删除数据库zoo,执行过程如下。

  mysql> DROP DATABASE zoo;
  Query OK, 0 rows affected (0.00 sec)

语句执行完毕,将数据库zoo从系统中删除。

  mysql> SHOW DATABASES;
  +--------------------+
  | Database             |
  +--------------------+
  | information_schema |
  | mysql                 |
  | performance_schema |
  | test                  |
  +--------------------+

可以看到,数据库列表中已经没有名称为zoo的数据库。

教程类别