gifts
Data source: See col-scraper on GitHub
3 rows where "date" is on date 2016-12-06
This data as json, CSV (advanced)
Link | rowid ▼ | name | date_str | date | member_id |
---|---|---|---|---|---|
137 | 137 | Lunch, Worshipful Company of Spectacle Makers | 6 December 2016 | 2016-12-06 | Sheriff Vincent Thomas Keaveny 1395 |
244 | 244 | Reception and Tickets (x3) to Royal Shakespeare Company performance of King Lear at the Barbican Centre | 6 December 2016 | 2016-12-06 | Catherine McGuinness 373 |
555 | 555 | 2 tickets to King Lear at the Barbican by the Barbican Centre | 6 December 2016 | 2016-12-06 | Alison Gowman 229 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE gifts ( name TEXT, date_str VARCHAR(50), date TEXT, member_id INTEGER REFERENCES members(id) ); CREATE INDEX gifts_date ON gifts("date"); CREATE INDEX gifts_member_id ON gifts("member_id");