home / colmem

committee_membership

Data source: See col-scraper on GitHub

3 rows where committee_id = 234

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ committee_id member_id role
929 929 Bursary Committee of the Board of Governors of the City of London School 234 Ian Christopher Norman Seaton 402  
968 968 Bursary Committee of the Board of Governors of the City of London School 234 Tim Levene 1944  
1028 1028 Bursary Committee of the Board of Governors of the City of London School 234 James Michael Douglas Thomson 1207  

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE committee_membership(
        committee_id INTEGER REFERENCES committees(id),
        member_id INTEGER REFERENCES members(id),
        role VARCHAR(50)
    );
CREATE INDEX committee_membership_committee_id ON committee_membership("committee_id");
CREATE INDEX committee_membership_member_id ON committee_membership("member_id");
Powered by Datasette · Queries took 19.1ms · Data source: See col-scraper on GitHub