gifts
Data source: See col-scraper on GitHub
2 rows where "date" is on date 2017-06-20 and member_id = 373
This data as json, CSV (advanced)
Link | rowid ▼ | name | date_str | date | member_id |
---|---|---|---|---|---|
265 | 265 | Guest of Clifford Chance [Lunch] | 20 June 2017 | 2017-06-20 | Catherine McGuinness 373 |
266 | 266 | Guest of Education Policy Institute [Drinks] | 20 June 2017 | 2017-06-20 | Catherine McGuinness 373 |
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");