Created
March 7, 2022 12:14
-
-
Save AbhimanyuAryan/fc038ef881006e96e4b8143dc1c1295a to your computer and use it in GitHub Desktop.
genieframework downloads
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT SUM(request_count) from stats WHERE package_name IN('Genie', | |
'SearchLight', | |
'Stipple', | |
'StippleCharts', | |
'StippleUI', | |
'StipplePlotly', | |
'SearchLightMySQL', | |
'SearchLightPostgreSQL', | |
'GenieAuthentication', | |
'SearchLightSQLite', | |
'StippleLatex', | |
'StipplePlotlyExport', | |
'GenieAutoreload', | |
'GenieAuthorisation') |
SELECT package_name, package_uuid, status, region, date, year, month, sum(request_count)
FROM stats WHERE package_name in ('Genie', 'SearchLight',
'Stipple',
'StippleCharts',
'StippleUI',
'StipplePlotly',
'SearchLightMySQL',
'SearchLightPostgreSQL',
'GenieAuthentication',
'SearchLightSQLite',
'StippleLatex',
'StipplePlotlyExport',
'GenieAutoreload',
'GenieAuthorisation') GROUP BY region, package_name
SELECT * FROM stats WHERE stats.package_name in ('Genie', 'SearchLight',
'Stipple',
'StippleCharts',
'StippleUI',
'StipplePlotly',
'SearchLightMySQL',
'SearchLightPostgreSQL',
'GenieAuthentication',
'SearchLightSQLite',
'StippleLatex',
'StipplePlotlyExport',
'GenieAutoreload',
'GenieAuthorisation') AND stats.date >= '2023-01-01'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SELECT package_name, region, sum(request_count)
FROM stats WHERE package_uuid = 'c43c736e-a2d1-11e8-161f-af95117fbd1e' GROUP BY region