viki650

导航

2020年3月24日 #

研究生英语读写译----topic3

摘要: 1. When did the first truly significant period of rapid change in the English language begin? The most important of these periods occurred during the 阅读全文

posted @ 2020-03-24 20:55 viki650 阅读(196) 评论(0) 推荐(0) 编辑

SQL----where 和 on 的区别

摘要: 博客:https://www.cnblogs.com/aspwebchh/p/6726181.html on 是连接操作中的筛选,where则是一个独立的筛选 on 和 where 在 inner join、cross join中操作没什么区别 但是在outer join时,会有区别 outer j 阅读全文

posted @ 2020-03-24 13:16 viki650 阅读(148) 评论(0) 推荐(0) 编辑

SQL----语句执行顺序

摘要: https://www.cnblogs.com/knowledgesea/p/4177830.html 流程图 From --> join > where > group by > having > select > distinct > top > order by 阅读全文

posted @ 2020-03-24 12:38 viki650 阅读(124) 评论(0) 推荐(0) 编辑

SQL----Inner Join、 Outer Join、Cross Join理解

摘要: 多表的查询,会涉及到Join操作 总结一下查询的种类和使用方法。 准备数据: 假设有两个表,学生和班级。 create table Stu ( Stu_no varchar(10), Class_no nvarchar(10) primary key(Stu_no) ) create table C 阅读全文

posted @ 2020-03-24 12:13 viki650 阅读(955) 评论(0) 推荐(0) 编辑