use [420900_2012]
go/****** object: storedprocedure [dbo].[計資料分析] script date: 08/28/2012 09:31:55 ******/
set ansi_nulls on
goset quoted_identifier on
goalter procedure [dbo].[計資料分析]
@checktimestar varchar(12),--時間段
@checktimeend varchar(12)--時間段
asdeclare @sqlstr varchar(5000)
declare @sqlzfy varchar(1000)--總費用
declare @sqlzfyhj varchar(1000)--總費用合計
declare @sqlzfyfhj varchar(1000)--非基藥費用合計
declare @sqlxm varchar(1000)--專案費用合計
begin
set @sqlzfy='select a.orgcode, sum(a.fee)合計 from o_cbzybxdjzb a,o_cbzybxdj b,o_cbzyzdb c
where writedate >='''+@checktimestar+''' and writedate <='''+@checktimeend+''' and c.billcode=b.billcode and c.billno=b.billno
and a.orgcode=b.orgcode and a.coopmedcode=b.coopmedcode and a.idno=b.idno and a.diagno=b.diagno'
set @sqlzfyhj=@sqlzfy+ ' group by a.orgcode'
set @sqlzfyfhj=@sqlzfy+' feetypecode in (''000204'',''000102'',''000202'')group by a.orgcode'
set @sqlxm=@sqlzfy+' feetypecode not in (''000204'',''000102'',''000202'') and wipeout =''2'') group by a.orgcode'
set @sqlstr= 'select a.* ,b.非基藥比例,c.專案比例 診療專案費 from
(select a.orgcode ,a.hospitalname, sum(totalfee)/count(1)例均住院費用,sum(daycount )/count(1)平均住院天數,(sum(totalfee)/count(1))/(sum(daycount )/count(1))平均床日費用
from dbo.o_cbzybxdj a , o_cbzyzdb b
where a.orgcode in (select orgcode from p_ylfwdw where orgtype =2)
and writedate >='''+@checktimestar+''' and writedate <='''+@checktimestar+'''
and a.billcode=b.billcode and a.billno=b.billno
group by a.orgcode,a.hospitalname)a ,
(select a.orgcode,b.合計/a.合計 非基藥比例 from
('+@sqlzfyfhj+')a,('+@sqlzfyfhj+')b where a.orgcode=b.orgcode
)b,(select a.orgcode,b.合計/a.合計 專案比例 from
('+@sqlzfyfhj+')a,('+@sqlxm+')b
where a.orgcode=b.orgcode)c
where a.orgcode=b.orgcode and a.orgcode=c.orgcode'
print @sqlstr
exec(@sqlstr)
end
資料分析過程
1 明確分析目的 了解需求,明確資料分析的目的,才能有效的對之後資料的採集 處理 分析等指引方向。2 資料收集 按照需求收集相關資料的過程,為資料分析提供依據。3 資料處理 資料的採集 資料分組 資料計算 資料儲存 資料檢索等。資料處理就是從大量可能雜亂無章難以理解的資料中抽取出有價值的資料。處理需...
儲存之於大資料分析
儲存之於大資料分析 目前市場上有兩種型別的大資料分析方式 同步的和非同步的,兩種都有各自在儲存容量和特性上的要求。近來大資料分析 這個詞正逐漸成為it界流行的乙個術語,以代指有關大資料本身的猜想,通俗說來即成堆資料背後問題的答案。然而,如果我們能夠從足夠的資料點入手比對及交叉分析,或許能幫助我們找到...
資料分析 資料分析概述
了解業務 了解資料 確認業務和資料 預期分析和管理 資料分析方式01.了解資料資料 1.測量標度型別 屬性本源並不是數字或者符號,通過測量標度將數值或者符號和物件的屬性建立關聯。屬性的型別 測量尺度 nominal 標稱 等於或者不等於 一對一的變換 ordinal 序數 大於或者小於 單調函式的變...