- 数据库操作
- 查询
- show databases; -- 所有数据库
- select database(); -- 当前数据库
- 创建
- create database [if not exists] 数据库名 [default charset 字符集] [collate 排序规则];
- 删除
- drop database [if exists] 数据库名;
- 使用
- use 数据库名;
- 查询
- 表操作
- 查询
- show tables; -- 所有表
- desc 表名; -- 表结构
- show create table 表名; --表创建语句
- 创建
- create table 表名 (字段1 类型,字段2 类型); -- 创建表
- 修改
- 表
- alter table 表名 rename to 新表名; -- 表重命名
- 字段
- alter table 表名 add 字段名 类型(长度) [comment 注释] [约束];
- alter table 表名 modify 字段名 新数据类型(长度);
- alter table 表名 change 旧字段名 新字段名 类型(长度) [comment 注释] [约束];
- alter table 表名 drop 字段名; -- 删除属性
- 表
- 删除
- drop table 表名;
- truncate table 表名;
- 查询