oracle常见的函数
1、字符函数
-- initcap函数只针对英文
select * from tb_user where user_name = initcap('张三'); -- ltrim 左剪切
select ltrim('helloworld','h') from dual; ---- elloworld select ltrim('helloworld','ah') from dual; ---- elloworld select ltrim('helloworld','l') from dual;---- helloworld select ltrim('helloworld','hl') from dual; ---- elloworld select ltrim('helloworld','he') from dual; -- rtrim 右剪切
#translate 翻译 一个字符只能匹配一个字符
select translate('helloworld','h','A') from dual;-- Aelloworld select translate('helloworld','hl','AG') from dual;-- AeGGoworGd select translate('helloworld','lh','AG') from dual;-- GeAAoworAd select translate('helloworld','l','AG') from dual;-- heAAoworAd -- repalce 多个字符可以替换一个字符或者多个字符
select replace('hello world','e','你好') from dual;-- h你好llo world -- instr -->查询子字符串的位置
select instr('hello world','w') from dual;-- 7 从1开始 select instr('hello world','rl') from dual;-- -- substr截取字符串
select substr('hello world',2,3) from dual; -- 从2开始截取,取3个字符 select concat('hello','world') from dual;#helloworld select concat('hello',null) from dual;#hello
常用的数字函数
-- abs --->求绝对值
select abs(-10) from dual;--
select abs(-0) from dual; -- -- ceil向上取整 ceil-->天花板函数
select ceil(3.14) from dual; --
select ceil(-3.14) from dual;-- -3 -- sign 取符号
select sign(100) from dual; --
select sign(-4343) from dual; -- -1
select sign(0) from dual;--
select sign(-0) from dual;-- select floor(3.14) from dual;--
select floor(4) from dual;--
select floor(-3.14) from dual; -- -4 -- power(m,n) m的n次幂
-- 求2的3次方
select power(2,3) from dual;-- -- mod取余
-- 11/2的余数
select mod(11,2) from dual;-- -- round 四舍五入
select round(3.14) from dual;--
select round(3.5) from dual;-- -- trunc 截取数字
select trunc(100.5466,3) from dual;-- 100.546
-- sqrt 求平方根
select sqrt(9) from dual;--
常用的日期函数
-- 日期函数
-- months_between--->返回两个日期之间的月的数量
select months_between('8-8月-08','4-7月-17') from dual;
select months_between('4-7月-17','8-8月-08') from dual; -- add_months 添加月份
select add_months('4-7月-17',4) from dual;
select add_months('31-7月-17',-5) from dual;-- 2017/2/28 -- next_day
select next_day('4-7月-17','星期四') from dual;
select next_day('4-7月-17','星期日') from dual;-- 2017/7/9 -- last_day --->获取每个月最后一天的日期
select last_day('4-7月-17') from dual;
select last_day('2-2月-08') from dual;#2008/2/29 -- round--->对日期进行四舍五入 四舍:当年的1月1日 五入:下一年的1月1日
-- 年中的四舍五入以7为界限的!!
select round('4-7月-17','year') from dual;
select round(sysdate,'year') from dual;
select round(to_date('30-6月-17'),'year') from dual;
-- 对月份进行四舍五入: 要么舍为当月的第一天,或者下一月的第一天 以16为界限
select round(to_date('4-7月-17'),'month') from dual;
select round(to_date('16-7月-17'),'month') from dual;
select round(to_date('15-2月-17'),'month') from dual;-- 2017/2/1 -- 对具体日期进行四舍五入-星期
-- 当周的第一天或者下周的第一天
-- 老外认为周日是一周的开始!!
-- 以周四为界限
select round(to_date('4-7月-17'),'day') from dual;#2017/7/2 --->星期天
select round(to_date('6-7月-17'),'day') from dual; -- trunc 截取日期
-- 对于年来说:截为当年的1月1日
select trunc(to_date('4-7月-17'),'year') from dual;#2017/1/1
select trunc(to_date('12-12月-17'),'year') from dual;#2017/1/1
-- 对于月份来说:截为当月的1日
select trunc(to_date('4-7月-17'),'month') from dual;#2017/7/1
-- 对于具体的日期day来说是截取为当前日期的周日
select trunc(to_date('4-7月-17'),'day') from dual;#2017/7/2
-- to_char -->把其他类型转为字符串
select to_char(sysdate) from dual; -- q的模式是第几季度
select to_char(sysdate,'q') from dual;-- 3
-- 获取当天日期在年中的天数
select to_char(sysdate,'ddd') from dual;-- 185天
select to_char(sysdate,'dd') from dual; --
select to_char(sysdate,'d') from dual;-- 3 星期三--对于老外 -- 当前日期在年中是第几周了
select to_char(sysdate,'ww') from dual;--
select to_char(sysdate,'w') from dual;-- -- to_date --->把一定格式的字符串转换为日期对象
-- yyyy-mm-dd
select to_date('2017-7-4','yyyy-mm-dd') from dual;
--hh 默认为12小时
select to_date('2017-7-4 14:05:11','yyyy-mm-dd hh24:mi:ss') from dual;
常用的其他函数
1)获取随机字符串
select dbms_random.string('l',2) from dual; -- l-->lower 2-->字符串的长度
select dbms_random.string('u',2) from dual; --> u-->upper 大写
2) oracle中的随机数字
select dbms_random.value(0,1) from dual; -- 0~1 但是取不到1
select trunc(dbms_random.value(1,10),0) from dual;
oracle常见的函数的更多相关文章
- Access、SQLServer、Oracle常见SQL语句应用区别
Access.SQLServer.Oracle常见SQL语句应用区别 关劲松 PMP 如果要兼容Access.SQL Server.Oracle三个数据库版本:我们在编写SQL语句的过程中,尽量使用一 ...
- 分享:Oracle 系统变量函数用法说明
在Oracle数据库中,Oracle系统变量函数是经常会使用到的函数,分享下Oracle系统变量函数的用法. Oracle函数多种多样,系统变量函数就是其中之一,介绍三种最常见的系统变量函数. Ora ...
- Oracle 中 decode 函数用法
Oracle 中 decode 函数用法 含义解释:decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值) 该函数的含义如下:IF 条件=值1 THEN RETURN(翻译 ...
- Oracle Tuning 基础概述01 - Oracle 常见等待事件
对Oracle数据库整体性能的优化,首先要关注的是在有性能问题时数据库排名前几位等待事件是哪些.Oracle等待事件众多,随着版本的升级,数量还在不断增加,可以通过v$event_name查到当前数据 ...
- 重写Oracle的wm_concat函数,自定义分隔符、排序
oracle中,wm_concat函数是一个聚合函数,和mysql中的group_concat函数类似,不过group_concat函数比较强大,可以定义分隔符和排序,当然所谓强大是相对的,这里假使我 ...
- 【原创】ORACLE常见使用问题解决
ORACLE常见使用问题解决 一.安装了oracle客户端后,发现plsql客户端找不到之前已经配置过的TNS连接信息 或许大家再使用ORACLE软件的过程中,经常会遇到这样的问题: 问题现象描述: ...
- Oracle日期时间函数大全
ORACLE日期时间函数大全 TO_DATE格式(以时间:2007-11-02 13:45:25为例) Year: yy two digits 两位年 显示值:07 yyy three digits ...
- Oracle过程及函数的参数模式,In、out、in out模式
Oracle过程及函数的参数模式 In.out.in out模式 在Oracle中过程与函数都可以有参数,参数的类型可以指定为in.out.in out三种模式. 三种参数的具体说明,如下图所示: ( ...
- oracle的substr函数的用法
oracle的substr函数的用法 取得字符串中指定起始位置和长度的字符串 substr( string, start_position, [ length ] ) 如: substr( ...
随机推荐
- 【音乐欣赏】《I Do What I Want》 - Missio
曲名:I Do What I Want 作者:Missio [00:15.84]I wish I could party like I used to when I was young [00:21. ...
- plt/sns draw histgram
当使用如下代码保存使用 plt.savefig 保存生成的图片时,结果打开生成的图片却是一片空白. import matplotlib.pyplot as pltx = np.triu(ged) # ...
- 测试linux是否能访问外网
方法1 curl -l http://www.baidu.com 方法2 wget http://www.baidu.com
- 2018-2019-20175334实验四《Android程序设计》实验报告
2018-2019-20175334实验四<Android程序设计>实验报告 一.实验内容及步骤 实验四 Android程序设计-1 Android Stuidio的安装测试: 参考< ...
- 数据库 concat 与 ||
mysql中用concat,oracle中concat和||都有,都是做字符串拼接的 oracle简单实例: 1.建表 CREATE TABLE tab1 (col1 VARCHAR2(6), col ...
- blur()低通滤波
blur()函数可以用标准化的盒式过滤器来平滑图像. C++ API: 相关官网资料: https://docs.opencv.org/3.4.1/d4/d86/group__imgproc__fil ...
- AcWing 338. 计数问题
#include <iostream> #include <algorithm> #include <vector> using namespace std; ; ...
- Java 读取网络资源文件 获取文件大小 MD5校验值
Java 读取网络资源文件 获取文件大小 MD5校验值 封装一个文件操作工具类: package c; import java.io.*; import java.net.HttpURLConnect ...
- Unity相机鼠标基本控制
一.滚轮控制视角缩放 /// <summary> /// 滚轮控制相机视角缩放 /// </summary> public void CameraFOV() { //获取鼠标滚 ...
- Linux服务器上实现数据库和图片文件的定时备份
一. 1.首先创建一个目录,用于存放备份的数据 2.在该目录下创建两个子目录一个用于存放数据库的信息,一个用于存放图片资源 3.#数据库的备份 执行下面的命令 mysqldump ...