1.关系型数据库的特点
理论基础:关系代数(集合论、一阶逻辑、关系运算)
具体表象:用二维表装数据
- 表 - table / entity - relation
- 列 - column / field - attribute
- 行 - row / record - tuple
- 列的数量 - deg ree
- 行的数量 - cardinality
- 主键 - primary key
- 外键 - foreign key
编程语言:结构化查询语言(SQL)
2.SQL
DDL(数据定义语言)- create / drop / alter
create database / drop database
create table / drop table / alter table- add column / drop column
- modify column / change column
- add constraint / drop constraintprimary key
foreign key
check
unique- rename to
DML(数据操作语言)- insert / delete / update / select
DCL(数据控制语言)- grant to / revoke from
3.MySQL命令
show databases;
show tables;
show engine;
show character set;
help ‘xxx’;
use xxx;
desc xxx;
4.MySQL数据类型
help ‘data types’;
help ‘decimal’
整数:
int / integer / int unsigned
bigint / bigint unsigned
小数:
decimal
字符串:
char
varchar
布尔:
boolean
日期时间:
date / time
datetime
JSON
JSON数组
JSON对象
5.表关系
一对一
多对一 / 一对多
多对多
多对一关系在多的一边添加外键列
多对多通过中间表转换成两个多对一
一对一关系是多对一关系的特例