1、约束
1、uniqu
e // 不能重复
2、auto_increment // 自增
3、not null // 不能为空
4、default // 默认值
2、多表联查
1、union all // 不去重 合并结果集
2、nuion // 去重 合并结果集
3、连接查询
1、select * from 表1,表2; // 生成一个笛卡儿积,再用where 表1.字段 = 表2.字段 去重
4、内链接
1、不是sql的标准,而是方言
2、select * from emp e inner join dept on e.xx = d.xx
3、查询出来的结果存在不满足查询条件的可能
5、外连接
1、left join 左外连接,right join 右外连接
2、select * from emp e left join dept d on e.xx = d.xx
3、 select * from emp e right join dept d on e.xx = d.xx
4、以那个表为标准那个表就放到左边