gifts
Data source: See col-scraper on GitHub
3 rows where "date" is on date 2017-03-10
This data as json, CSV (advanced)
Link | rowid ▼ | name | date_str | date | member_id |
---|---|---|---|---|---|
252 | 252 | Guest of the Goldsmiths' Company [Lunch] | 10 March 2017 | 2017-03-10 | Catherine McGuinness 373 |
476 | 476 | Dinner (double invitation) Worshipful Company of Cordwainers | 10 March 2017 | 2017-03-10 | Sir Mark Boleat 136 |
561 | 561 | Dinner with Cordwainers Livery Company at Clothworkers' Hall | 10 March 2017 | 2017-03-10 | 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");