home / colmem

gifts

Gifts of Hospitality in the Register of Interests.

date_str is the date as supplied in the Register, and date is an attempt to create a year-month-day date from that string.

Data source: See col-scraper on GitHub

1 row where date_str = "23rd November"

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ name date_str date member_id
492 492 Private visit to the Tower of London Jewel House followed by dinner at Tower Bridge, accompanied by my husband (TMI conference) 23rd November   Vivienne Littlechild 287

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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");
Powered by Datasette · Queries took 214.944ms · Data source: See col-scraper on GitHub