mysql知识点预览
mysql.svg

sql分类

sql分类.svg

mysql基本用法

mysql基本用法.svg

mysql基础操作

  1. -- 删除数据库
  2. drop database blog;
  3. -- 创建数据库
  4. create database blog;
  5. -- 使用数据库
  6. use blog;
  7. -- 创建表
  8. create table user(
  9. id int not null auto_increment comment '',
  10. name varchar(20) not null comment '',
  11. password varchar(1000) not null comment '',
  12. primary key(id)
  13. ) engine = InnoDB charset=utf8mb4;

image.png