摘要: 阅读全文
posted @ 2016-12-28 10:40 洋流季 阅读(193) 评论(0) 推荐(0) 编辑
摘要: SQL> set serveroutput on;SQL> exec dbms_output.put_line(1); set serveroutput on size 1000000 阅读全文
posted @ 2016-12-22 19:04 洋流季 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 自动排版: ctrl + i 同名变量高亮: shift+alt+ o 导包: shift+ctrl +o 阅读全文
posted @ 2016-12-10 18:36 洋流季 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 关联匹配 =INDEX(Sheet2!$A$2:$A$77,MATCH(A4,Sheet2!$C$2:$C$77,0)) 重复性筛选 =IF(COUNTIF(B:B,B1)>1,B1,"") 错误处理 =iferror('','') 阅读全文
posted @ 2016-12-06 10:32 洋流季 阅读(126) 评论(0) 推荐(0) 编辑
摘要: SELECT a,b,c,rank () OVER (PARTITION BY a,b ORDER BY c) rank FROM test; 以a,b进行分组,在每个组内以c进行排名。 partition by 分组用来排序,不能合并。 group by 分组用来合并统计。 阅读全文
posted @ 2016-12-05 15:52 洋流季 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #!/bin/shexport LANG=zh_CNtimestamp=`date +%Y%m%d%H%M`/opt/java6/bin/java -Xms128m -Xmx512m -Dfile.encoding=gbk -classpath /weblogic/mpms_job/WEB-INF/ 阅读全文
posted @ 2016-06-13 22:23 洋流季 阅读(2446) 评论(0) 推荐(0) 编辑