首页 > 其他 > 详细

重点函数

时间:2020-08-24 23:26:30      阅读:117      评论:0      收藏:0      [点我收藏+]

函数
转换函数
to_date(‘‘,‘‘)
to_char(sysdate,‘yyyy‘)
聚合函数
max() min() sum() avg() count()
分组
select 分组字段,聚合函数 from 表名 group by 字段

注意:聚合函数
过滤不满足条件的分组
having
>顺序原则
select from 表名
where
group by
having
order by
》select nvl(comm,0) from emp; 为null赋值
》decode 条件判断
select decode(字段,取值,显示值) from 表名
》case when then end

重点函数

原文:https://www.cnblogs.com/longmo666/p/13557129.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!