0. 案例表
学生表(student)
班级表(class)
1. 内连接(等值连接):使用where或inner join实现
例如查询学生以及其所在班级的信息
* 写法1:select s.*, c.* from student s, class c where s.cid = c.id
* 写法2:select s.*, c.* from student s inner join class c on s.cid = c.id
2. 自然连接: 在内连接的基础上去掉重复的列(去掉重复列我们手动控制)
写法:select s.*, c.cname from student s inner join class c on s.cid = c.id