摘要: 一、基础知识:我们都该学点统计学? 统计学是一门以概率论为基础的方法论学科,主要通过收集数据,进行量化的分析、总结,并进而进行推断和预测,为相关决策提供依据和参考。它在几乎所有学科领域里面都具有重要的应用,从物理、社会科学到人文科学,甚至被用来工商业及政府的情报决策之上。 往近了说,想要成为一名数据 阅读全文
posted @ 2016-07-19 21:22 在_路上 阅读(3491) 评论(0) 推荐(1)
摘要: 今儿个重装了个系统,win8 64位。接着装了个64位的oracle11g,oracle11g下载页面:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html,找到适合自己系统的数据库,需要... 阅读全文
posted @ 2016-01-08 15:36 在_路上 阅读(7061) 评论(0) 推荐(1)
摘要: 这是一个Oracle的列转行函数:LISTAGG()先看示例代码:Sql代码withtempas(select'China'nation,'Guangzhou'cityfromdualunionallselect'China'nation,'Shanghai'cityfromdualunionall... 阅读全文
posted @ 2015-12-15 20:03 在_路上 阅读(244) 评论(0) 推荐(0)
摘要: with as语法–针对一个别名with tmp as (select * from tb_name)–针对多个别名with tmp as (select * from tb_name), tmp2 as (select * from tb_name2), tmp3 as (select * fro... 阅读全文
posted @ 2015-12-15 19:51 在_路上 阅读(159) 评论(0) 推荐(0)
摘要: 原文地址:http://blog.sina.com.cn/s/blog_6ceed3280100x0om.html1.物理读(physical read)当数据块第一次读取到,就会缓存到buffer cache 中,而第二次读取和修改该数据块时就在内存buffer cache 了 以下是例子:1.1... 阅读全文
posted @ 2015-09-13 20:02 在_路上 阅读(237) 评论(0) 推荐(0)