考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
全国  |             |          |          |          |          |         
  当前位置:计算机等级 > 二级考试 > Java语言程序设计 > 考试辅导 > 文章内容
  

全国计算机等级考试二级Java重点内容(9)

中华IT学院   【 】  [ 2016年9月18日 ]

Oracle中的日期处理

select to_char(sysdate, 'yyyy-mm-dd')from dual;

 

select ename, hiredate, round(sysdate - hiredate) days from emp_ning;

 

select sysdate - 10 from dual;

 

select ename, hiredate,round(months_between(sysdate, hiredate))as monsfrom emp_ning;

 

--函数的嵌套

f4(f3(f1(f2(p1,p2)), p3), p4)

 

concat(concat(concat(concat('a','b'),'c'),'d'), 'e')

 

'a' || 'b' || 'c' || 'd' || 'e'

 

select 'hello' || 'world' from dual;

 

--计算三个月以后的时间

select add_months(sysdate, 3)from dual;

 

select last_day(sysdate) from dual;

 

--修改tom的入职时间是12年2月1号

update emp_ningset hiredate = to_date('2012/02/01','yyyy/mm/dd')where ename = 'tom';

 

--增加一个职员:

--1012, 'jerry', '2012-01-12' insert into emp_ning(empno, ename, hiredate)values(1012, 'jerry',

to_date('2012/01/12','yyyy/mm/dd'));

 

to_date('2012-01-12','yyyy-mm-dd')

to_char(sysdate, 'yyyy-mm-dd')

 

      to_char       to_number

日期  -------> 字符 --------> 数字

      <------       <--------

      to_date        to_char

 

    to_char         to_number

10000 --> $10,000.00 --> 10000

数字      字符           数字

2012-02-01

2012/02/01

 

04/05/10

分享到:
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2007-2013 中华考试网(Examw.com) All Rights Reserved