oracle
select trunc(sysdate,'yy') from dual; 本年第一天
select trunc(sysdate,'mm') from dual; 本月第一天
select trunc(sysdate,'dd') from dual; 本日
select addmonths(trunc(sysdate,'yy'),-12) from dual; 去年第一天
to_char(AOB_SETDATE, 'mm.dd') 转换日期为 字符型 mm.dd 格式
工作中,我们经常会碰到行转列的情况
这里我介绍几种简单的方法--行转列
1.oracle的pivot函数
原表
使用pivot函数:
with temp as(
select '四川省' nation ,'成都市' city,'第一' ranking from dual union all
select '四川省' nation ,'绵阳市' city,'第二' ranking from dual union all
select '四川省' nation ,'德阳市' city,'第三' ranking from dual union all
select '四川省' nation ,'宜宾市' city,'第四' ranking from dual union all
select '湖北省&