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:
11
db/all_swarm_checkin_categories.sql
Normal file
11
db/all_swarm_checkin_categories.sql
Normal 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;
|
||||
Reference in New Issue
Block a user