|
|
@ -25,6 +25,8 @@ |
|
|
|
SELECT |
|
|
|
fact.index_code AS "indexCode", |
|
|
|
ROUND(fact.score*fact.WEIGHT, 1) AS "indexTotal", |
|
|
|
ROUND(fact.score,1) AS "indexTotalOriginScore", |
|
|
|
fact.WEIGHT AS "indexTotalSupWeight", |
|
|
|
ROUND(self.self_score*fact.WEIGHT, 1) AS "agencyScore", |
|
|
|
self.self_score AS selfOriginScore, |
|
|
|
self.SELF_WEIGHT AS agencyWeight, |
|
|
@ -49,6 +51,8 @@ |
|
|
|
SELECT |
|
|
|
fact.month_id AS "monthId", |
|
|
|
ROUND(fact.score*fact.WEIGHT, 1) AS "indexTotal", |
|
|
|
ROUND(fact.score,1) AS "indexTotalOriginScore", |
|
|
|
fact.WEIGHT AS "indexTotalSupWeight", |
|
|
|
ROUND(self.self_score*fact.WEIGHT, 1) AS "agencyScore", |
|
|
|
ROUND(self.sub_score*fact.WEIGHT, 1) AS "subAgencyScore", |
|
|
|
fact.index_code AS "indexCode" |
|
|
|