随笔
Archer未亡城
喜欢交朋友,喜欢旅游,最喜欢打篮球,喜欢游戏dota,coc
展开
-
oracle的多列转单行的方法
方法一:wmsys.wm_concat() 方法二:listagg()(注意版本的问题,低版本的oracle是不支持的,貌似11.2g以后的版本支持) 集体的用法如下: 如有表students stu_class stu_name 1 小明 3 小强 2 小花原创 2016-06-02 15:12:08 · 476 阅读 · 0 评论 -
SQL取当月某一天的日期
有一个很简单,通用而又投机取巧的写法: 如今天sysdate为2016-06-02 select to_date(to_char(sysdate,'yyyy-mm')||'01','yyyy-mm-dd')+10 from dual; 这条sql 的意思就是取当月11号的日期 结果为:2016-06-11原创 2016-06-02 15:01:04 · 531 阅读 · 0 评论 -
Exception sending context initialized event to listener instance of class org.springframework.web.co
在springMVC项目启动的时候报错了,如下面所示: 严重: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userService' defined in ServletContext resource原创 2016-06-06 23:05:20 · 471 阅读 · 0 评论 -
利用trunc函数定时刷新物化视图
创建物化视图test_view,并每隔一小时刷新一次数据 create materialized view test_view refresh force on demand start with sysdate next trunc(sysdate,'mi')+1/24 --每隔一小时刷新一次 as select polno from pol_main原创 2016-07-18 10:36:54 · 688 阅读 · 0 评论