2019年1月11日
摘要: 内连接 ``` 内连接:结果为两张表有对应关系的数据 语法:左表 inner join 右表 on 两表有关联的字段的条件 eg:select * from emp inner join dep on emp.dep_id = dep.id; ``` 左连接 ``` 左连接:在内连接的基础上还保留左 阅读全文
posted @ 2019-01-11 20:48 paulgeo 阅读(372) 评论(0) 推荐(0)