摘要: 多表查询本质(图解) 展开(图解) 联表查询,7种join对比: 1.1 inner/right/left join对比 -- 联表查询 -- join 对比 -- 表中数据不够了加了一些 insert into `result`(`studentno`,`subjectno`,`examdate` 阅读全文
posted @ 2020-09-24 20:55 凸然猿 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 1.1创建一个含有基本信息的数据库 create database if not exists `school`; -- 创建一个school数据库 use `school`;-- 创建学生表 drop table if exists `student`; create table `student 阅读全文
posted @ 2020-09-24 19:52 凸然猿 阅读(148) 评论(0) 推荐(0) 编辑