Oracle数据库的基本查询(3)

select to_char(sal,'L9,999.99') from emp;
/*
to_char(1210.73, '9999.9') 返回 '1210.7'
to_char(1210.73, '9,999.99') 返回 '1,210.73'
to_char(1210.73, '$9,999.00') 返回 '$1,210.73'
to_char(21, '000099') 返回 '000021'
to_char(852,'xxxx') 返回' 354'

*/

--日期转字符 to_char() 
select to_char(sysdate,'yyyy-mm-dd hh:mi:ss') from dual;
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
--只想要年
select to_char(sysdate,'yyyy') from dual;  --2017

--只想要日
select to_char(sysdate,'d') from dual; --2  代表一个星期中第几天
select to_char(sysdate,'dd') from dual;  --10  代表一个月中的第几天
select to_char(sysdate,'ddd') from dual; --100 代表一年中的第几天

select to_char(sysdate,'day') from dual;  --monday
select to_char(sysdate,'dy') from dual;  --mon  星期的简写

--字符转日期
select to_date('2017-04-10','yyyy-mm-dd') from dual;

--查询1981年 -- 1985年入职的员工信息
select * from emp where hiredate between to_date('1981','yyyy') and to_date('1985','yyyy');

/*
      通用函数:
      nvl(参数1,参数2) 如果参数1 = null 就返回参数2
      nvl2(参数1,参数2,参数3) 如果参数1 = null ,就返回参数3, 否则返回参数2
     
      nullif(参数1,参数2) 如果参数1 = 参数2 那么就返回 null , 否则返回参数1
     
      coalesce: 返回第一个不为null的值
*/
select nvl2(null,5,6) from dual; --6;

select nvl2(1,5,6) from dual; --5;

select nullif(5,6) from dual; --5
select nullif(6,6) from dual; --null

select coalesce(null,null,3,5,6) from dual;  --3

select ceil(-12.5) from dual; --12
select floor(12.5) from dual; --12

select '  hello  ' from dual;
select * from emp;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/8b0a23f88c1d28df39bce23c35e31b9f.html