Fork of Skin usage in dewiki by AntiCompositeNumber
This query is marked as a draft This query has been published by Zygimantus.

SQL

AخA
 
SELECT 
    CASE up_value
        WHEN "monobook" THEN "monobook"
        WHEN "vector" THEN "vector"
        WHEN "vector-2022" THEN "vector-2022"
        WHEN "minerva" THEN "minerva"
        WHEN "cologneblue" THEN "cologneblue"
        WHEN "timeless" THEN "timeless"
        WHEN "modern" THEN "modern"
        ELSE "DEFAULT"
    END AS `skin`,
    COUNT(*)
FROM user_properties_anon
WHERE up_property = "skin"
AND upa_touched > SUBDATE(NOW(), INTERVAL 1 YEAR)
GROUP BY 1
ORDER BY 2 DESC
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

This query has never yet been executed