We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ed857 commit 93f16cfCopy full SHA for 93f16cf
sql/3_load_profiles.sql
@@ -81,7 +81,7 @@ select
81
case
82
when ratio > .7 then upper(opname) || ' ~' || round(100 * ratio, 2)::text || '%'
83
else 'Mixed: ' || (
84
- select string_agg(upper(opname) || ' ~' || round(100 * ratio, 2)::text || '%', ', ' order by ratio desc)
+ select string_agg(upper(left(opname, 1)) || ' ~' || round(100 * ratio, 2)::text || '%', ', ' order by ratio desc)
85
from (select * from ops_ratios where ratio > .2) _
86
)
87
end
0 commit comments