创建数据库 : create database [if not exists] 数据库名;
删除数据库 : drop database [if exists] 数据库名;
查看数据库 : show databases;
使用数据库 : use 数据库名;

MySQL数据库语句

创建数据库

  1. create database [database name]

if we want to know if the database is exits.

  1. create database if not exists [databases]

删除命令

  1. drop database [database name]
  1. # for the same reason
  2. drop database if exists [database name]

当表名或是字段名是个特殊字符

show databases;

image.png

use test

切换数据库
image.png

show tables;

查看表

describe testsheet;

打印数据库


MySQL 表语句

  1. CREATE TABLE IF NOT EXISTS `newtable`(
  2. `id` INT(4) NOT NULL AUTO_INCREMENT COMMENT 'this is a commit of this line',
  3. `name` VARCHAR(30) NOT NULL DEFAULT 'name_default' COMMENT 'comits ',
  4. PRIMARY KEY(`id`)
  5. )ENGINE=INNODB DEFAULT CHARSET=utf8