This commit is contained in:
2022-03-03 01:00:17 +00:00
parent 6ba44e792e
commit 725fdefda0
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ AuthorizationRoles.Accounting;
GROUP BY x,z
)
select X,Z,
wocount / sum(wocount) over (partition by X) * 100 as Y
ROUND(wocount / sum(wocount) over (partition by X) * 100,2) as Y
from subq
order by x ASC
) t";