oracle中的date类型字段,截取年份可用to_char函数。
工具:oracle 10g
步骤:
1、如emp表中有hiredate字段为date类型的数据。
2、截取其中的年份部分,用如下语句:
select empno,ename,job,mgr,to_char(hiredate,'yyyy'),sal,comm,deptno from emp3、运行后结果,可以看出年份已将截取出来了:
1、创建测试表,create table test_date(v_date date)
2、插入测试数据,
insert into test_date
select sysdate - level * 10 from dual connect by level <100
3、查询表中所有记录,select * from test_date,可以看到时间格式为年月日时分秒,
4、编写sql,将时间截取到年月,
select t.*,
to_char(v_date, 'yyyymm') v_date_mon1,
trunc(v_date, 'mm') v_date_mon2
from TEST_DATE t
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)