用分析函數(shù)就可以了
從策劃到設(shè)計制作,每一步都追求做到細膩,制作可持續(xù)發(fā)展的企業(yè)網(wǎng)站。為客戶提供網(wǎng)站制作、成都做網(wǎng)站、網(wǎng)站策劃、網(wǎng)頁設(shè)計、主機域名、虛擬空間、網(wǎng)絡(luò)營銷、VI設(shè)計、 網(wǎng)站改版、漏洞修補等服務(wù)。為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,以客戶的口碑塑造優(yōu)易品牌,攜手廣大客戶,共同發(fā)展進步。
select name ,quantity/sum(quantity)over(order by name) from 表名
round((CountDelayed/CountOntimeAir)*100,2) 這個時候是還不能用CountDelayed,CountOntimeAir字段的,要在外面加一層;
COUNT(CASE WHEN AIR_DATE = '2013-10-21' THEN 1 ELSE 0 END) 這里你的本意是用sum的吧?count可能不是你想要的結(jié)果.
to_char(a/b*100,'fm999999990.999999999')||'%'
函數(shù):to_char(數(shù)字,格式),格式小數(shù)點前面一位是零。
select sum(col2)/count(*) from
(select col1, case when col2=1 then 1 else 0 end col2 from test1) group by col1;
SQL select sum(col2)/count(*) from (select col1, case when col2=1 then 1 else 0 end col2 from test1) group by col1;
SUM(COL2)/COUNT(*)
------------------
.5
.75
-----------------------------------補充-----------------------------------
如果要加上百分比的,做些小處理即可
SQL select (sum(col2)*100/count(*))||'%' from
(select col1, case when col2=1 then 1 else 0 end col2 from test1) group by col1;
(SUM(COL2)*100/COUNT(*))||'%'
-----------------------------------------
50%
75%
實現(xiàn)代碼:
ELECT(CASE?WHEN?db_psndoc.age=30?THEN?'30歲以上'
WHEN?db_psndoc.age30?THEN?'30歲及以下'?END)
ranges,?COUNT(*) rs ,100*round(COUNT(*)/SUM(COUNT(*))
OVER(),4)||'%'?percent?FROM?bd_psnd
GROUP?BY?CASE
WHEN?bd_psndoc.age=30?then?'30歲及以下'
WHEN?db_psndoc.age=30?THEN?'30歲以上'
END
擴展資料
sum(..) over(..)用法分析:
sum(…) over( ),對所有行求和;
sum(…) over( order by … ), 連續(xù)求和;
sum(…) over( partition by… ),同組內(nèi)所行求和;
sum(…) over( partition by… order by … ),同第1點中的排序求和原理,只是范圍限制在組內(nèi)。
over不能單獨使用,要和分析函數(shù):rank(),dense_rank(),row_number(),sum()等一起使用。
over函數(shù)的參數(shù):over(partition by columnname1 order by columnname2)
含義,按columname1指定的字段進行分組排序,或者說按字段columnname1的值進行分組排序。
例子:
select deptno,ename,sal,
sum(sal) over (partition by deptno order by ename) 部門連續(xù)求和,--各部門的薪水"連續(xù)"求和
sum(sal) over (partition by deptno) 部門總和, -- 部門統(tǒng)計的總和,同一部門總和不變
SQL select to_char( 0.191 * 100) || '%' AS percent_zy_js from dual;
PERCENT_ZY
----------
19.1%
根據(jù)上面的運行結(jié)果。
你的 SQL 可以修改為:
to_char( (sum(zy_js_to_rs)/sum(enterprise_to_rs)) * 100 ) || '%' AS percent_zy_js