- 创建数据库
create database [if not exists] weastos
[ ]符号代表选写 exists意思为存在
- 删除数据库
drop database [if exists] weastos
- 使用数据库
use `school`
``这个符号如果你的表名或者字段名字是一个特殊字符就要加上
- 查看数据库
show database --查看所有数据库
create database [if not exists] weastos
[ ]符号代表选写 exists意思为存在
drop database [if exists] weastos
use `school`
``这个符号如果你的表名或者字段名字是一个特殊字符就要加上
show database --查看所有数据库