home / wwu_data_science_club

Menu
  • PublicMatt

vw_meeting_headcount (view)

2 rows

✎ View and edit SQL

This data as json, CSV (advanced)

meeting cnt
2022-11-24 17:00 5
2022-12-01 17:00 14

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW vw_meeting_headcount as 
select
    meeting,
    count(1) as cnt
from attendance
group by meeting;
Powered by Datasette · Queries took 1.826ms