摘要:
1、什么是视图 视图就是通过查询得到一张虚拟表,然后保存下来,下次用的直接使用即可2、为什么要用视图 如果要频繁使用一张虚拟表,可以不用重复查询3、如何用视图create view teacher2course asselect * from teacher inner join course on 阅读全文
摘要:
1、内连接:把两张表有对应关系的记录连接成一张虚拟表select * from emp inner join dep on emp.dep_id = dep.id;#应用: select * from emp,dep where emp.dep_id = dep.id and dep.name = 阅读全文
摘要:
一 语法 select distinct 查询字段1,查询字段2,。。。 from 表名 where 分组之前的过滤条件 group by 分组依据 having 分组之后的过滤条件 order by 排序字段 limit 显示的条数; 上面是语法定义顺序,不是执行顺序;#使用函数的方式模拟语法顺序 阅读全文