1
0
mirror of https://github.com/elisspace/FxLifeSheet.git synced 2026-08-29 15:44:00 +00:00

Add all_swarm_checkin_categories.sql

This commit is contained in:
Felix Krause
2021-11-12 12:33:58 +01:00
parent 2dd46eaaf5
commit 29b836b26a

View File

@@ -0,0 +1,11 @@
-- DDL generated by Postico 1.5.19
-- Not all database features are supported. Do not use for backup.
-- Table Definition ----------------------------------------------
CREATE VIEW all_swarm_checkin_categories AS SELECT raw_data.value AS category,
count(*) AS count
FROM raw_data
WHERE raw_data.key = 'swarmCheckinCategory'::text
GROUP BY raw_data.value
ORDER BY (count(*)) DESC;