gifts
Data source: See col-scraper on GitHub
3 rows where "date" is on date 2019-03-25
This data as json, CSV (advanced)
Link | rowid ▼ | name | date_str | date | member_id |
---|---|---|---|---|---|
323 | 323 | Guest of Robinson Hambro [dinner] | 25 March 2019 | 2019-03-25 | Catherine McGuinness 373 |
324 | 324 | Guest of KPMG [lunch] | 25 March 2019 | 2019-03-25 | Catherine McGuinness 373 |
370 | 370 | Dinner at Chartered Secretaries and Administrators’ Company | 25 March 2019 | 2019-03-25 | Tijs Broeke 1954 |
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");