数据库基础知识
格式 | 作用 |
---|
create database 数据库名; | 创建数据库 |
show databases; | 显示所有创建的数据库 |
show create database 数据库名; | 显示该数据库的信息 |
alter database 数据库名 default character set 编码 collate 编码_bin | 修改数据库的编码 |
drop database 数据库名 | 删除数据库 |
数据类型
格式 | 作用 |
---|
current_date | 当前系统的日期 |
current_time | 当前系统的时间 |
now() | 当前系统的日期和时间 |
数据表的基本操作
格式 | 作用 |
---|
create table 表名 (字段名 数据类型[完全性约束条件]); | 创建表 |
show tables; | 显示该数据库下所有表 |
show create table 表名; | 显示表的创建语句、编码 |
desc 表名; | 显示表的字段信息 |
alter table 旧表名 rename 新表名; | 修改表名 |
alter table 表名 change 旧字段名 新字段名 新数据类型; | 修改字段名 |
alter table 表名 modify 字段名 新数据类型; | 修改字段类型 |
alter table 表名 add 新字段名 新数据类型; | 添加字段 |
alter table 表名 drop 字段名 | 删除字段 |
alter table 表名 modify 字段名1 数据类型1 after/before 字段名2; | 修改字段排列顺序 |
drop table 表名 | 删除表 |
表的约束
注意:除了外键约束约束是放在创建表语句里的
作用:对表中的字段进行限制,保证数据表中数据的正确性和唯一性
格式 | 作用 |
---|
字段名 数据类型 primary key; | 单字段主键 |
primary key (字段名1, 字段名2); | 多字段主键 |
字段名 数据类型 not null; | 非空约束 |
字段名 数据类型 unique; | 唯一约束 |
字段名 数据类型 default 默认值; | 默认约束 |