Oracle笔记--SQL部分整体框架语句的执行顺序:from →where →group by→having→select→order by
【[Oracle]复习笔记-SQL部分内容】select *from *where *group by *having *order by *关于select(1)当调用的不同表中存在相同名称的列时,需要指明表格
select student.name,class.namefrom student,class(2)重定义列名
select student.name as stuname --as可以省略(3)当需要重定义的列名与sql保留关键字相同时需要使用双引号
select student.score as "value"(4)使用distinct去重
select distinct(student.score) from student关于from(1)左右合并表格 a inter join b using(c),以列c为标准,合并表a和表b中列c值相同的行
-- 使用inter join,对于任意一个表格,若列c的值为空则该行数据不显示from class inter join student using(stuname)-- 若两个表格中关于同一项值的列名不同,使用“on + 判断”而不是“using()”from class inter join student on class.stuname=student.name-- 向左合并(当表a中列c为空时仍然显示表a的数据)left join-- 向右合并 right join-- 两个表中列c为空的行都显示 full join(2)上下合并表格union(去重)与union all(不去重)注意:union(all)要求两次select列数一定要相同,列必须拥有相似的数据类型
from (select student.age,student.namefrom studentunion allselect teacher.age,teacher.namefrom teacher) as allmessage -- 一般会起一个名字便于后续使用关于where(1)查找某个值
where sid='BDT20040'where sid like 'BDT20%' -- %代指零个或多个字符(2)使用子查询
where SID in (select SID from classwhere class.name='Oracle')-- not in这里就不写了,用法类似where exists(select * from classwhere class.name='Oracle' and class.sid=student.sid)-- exists用于判断查询子句是否有记录,如果有记录返回 True,否则返回 False,与select后接的查找内容无关 。not exists 同理(3)判断是否为空
where sid is not null关于group by当select中使用聚合函数时,非聚合函数项需要添加到group by中
常见的聚合函数有:avg()、count()、max()、min()
关于having对于使用聚合函数的列,我们使用having的方法进行筛选
select class.name,max(score)from class inter join student on class.stuname=student.namegroup by class.namehaving max(score)>80关于order byorder by student.score-- 默认为从小到大,可以设置为desc,改为从大到小其他(1)取整函数 round
select round(1.245,2) from dual--四舍五入到两位小数,其中2可以省略,若省略则默认四舍五入到整数 。dual表示空表 。select draw_time,trunc(draw_time) from usershi--日期型数据也能实现取整,执行时舍去时分秒,不会进位 。
文章插图
(2)关于空值 null
- 空值在判断值是否相等时(=、in)返回无法判断(不相等)
- 但在使用group by时,空值会被视作同一项(相等)
- count(字段/NULL) 不统计NULL值,count(null)=0
如果还有想到啥的可以私聊我,我去补充一下(大概率咕咕咕就是了)
经验总结扩展阅读
- 十一 【Kubernetes】K8s笔记:Ingress 集群进出流量总管
- 不想懂得歌词 我不想懂得
- Vue3.x+element-plus+ts踩坑笔记
- LOL笔记本fps太低怎么解决(lol手游fps不稳定)
- 笔记本玩英雄联盟突然fps变得很低怎么解决
- 打游戏FPS低怎么办(笔记本打游戏fps低)
- cf烟雾保护头怎么调最新(笔记本cf烟雾保护头怎么调最新)
- 笔记本电脑如何调烟雾头(笔记本呼吸灯怎么设置)
- 上海二手奢侈品店探店笔记,我的大牌日记 大牌包一直是我的心头爱
- 如何更新电脑的显卡驱动(笔记本显卡驱动要不要更新)