You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- 1.1 Total number of log-insSELECTcount(*) FROMgeohub.userswhere signupat >'2024-01-01'-- 2.2 Number of user-uploaded and downloaded datasetsSELECTcount(*) FROMgeohub.datasetwhere createdat >'2024-01-01'-- 2.2.1 By country
WITH country_tag as (
SELECT id, key, value
FROMgeohub.tagWHERE key ='country'
)
SELECTcount(*)
FROMgeohub.dataset a
INNER JOINgeohub.dataset_tag b
ONa.id=b.dataset_idwhere createdat >'2024-01-01'AND exists(select id FROM country_tag WHERE id =b.tag_id)
-- 2.2.2 By region
WITH country_tag as (
SELECT id, key, value
FROMgeohub.tagWHERE key ='region'or key ='continent'
)
SELECTcount(*)
FROMgeohub.dataset a
INNER JOINgeohub.dataset_tag b
ONa.id=b.dataset_idwhere createdat >'2024-01-01'AND exists(select id FROM country_tag WHERE id =b.tag_id)
https://undp.sharepoint.com/:x:/r/sites/SDGIntegrationteam/Shared%20Documents/SDG%20Metrics,%20Data%20and%20Analytics/6.%20Reporting/1.%20Results/Results%20%26%20Reporting.xlsx?d=wf251066802844f5690a5e22f64c5551e&csf=1&web=1&e=F8lqeE
The text was updated successfully, but these errors were encountered: