Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Add country first appearance report #1024

Merged
merged 1 commit into from
Jun 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/django/api/reports/country_first_appearance.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- List the ISO country codes where facilities are located sorted by the year
-- and month that the country first appeared.

SELECT
country_code,
to_char(min(created_at), 'YYYY-MM') AS created_at
FROM api_facility
GROUP BY country_code
ORDER BY created_at DESC;