elections
Data license: Open Parliament Licence · Data source: UK Parliament election results website
5 rows where polling_on = "2010-05-06" and result_summary_id = 11
This data as json, CSV (advanced)
Suggested facets: polling_on (date), declaration_at (date), writ_issued_on (date)
| id ▼ | polling_on | is_notional | valid_vote_count | invalid_vote_count | majority | declaration_at | constituency_group_id | general_election_id | result_summary_id | electorate_id | parliament_period_id | writ_issued_on |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2638 | 2010-05-06 | 0 | 32133 | 549 | 17579 | 2010-05-07T01:26:00 | Belfast West 38 | 1 1 | 11 11 | 2637 2637 | 55 55 | 2010-04-12 |
| 2826 | 2010-05-06 | 0 | 46803 | 263 | 4 | 2010-05-07T15:02:00 | Fermanagh and South Tyrone 226 | 1 1 | 11 11 | 2825 2825 | 55 55 | 2010-04-12 |
| 2965 | 2010-05-06 | 0 | 40842 | 297 | 15363 | 2010-05-07T03:00:00 | Mid Ulster 365 | 1 1 | 11 11 | 2964 2964 | 55 55 | 2010-04-12 |
| 2992 | 2010-05-06 | 0 | 44906 | 343 | 8331 | 2010-05-07T03:31:00 | Newry and Armagh 392 | 1 1 | 11 11 | 2991 2991 | 55 55 | 2010-04-12 |
| 3220 | 2010-05-06 | 0 | 37275 | 341 | 10685 | 2010-05-07T00:36:00 | West Tyrone 620 | 1 1 | 11 11 | 3219 3219 | 55 55 | 2010-04-12 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "elections" (
[id] INTEGER PRIMARY KEY,
[polling_on] TEXT,
[is_notional] INTEGER,
[valid_vote_count] INTEGER,
[invalid_vote_count] INTEGER,
[majority] INTEGER,
[declaration_at] TEXT,
[constituency_group_id] INTEGER REFERENCES [constituency_groups]([id]),
[general_election_id] INTEGER REFERENCES [general_elections]([id]),
[result_summary_id] INTEGER REFERENCES [result_summaries]([id]),
[electorate_id] INTEGER REFERENCES [electorates]([id]),
[parliament_period_id] INTEGER REFERENCES [parliament_periods]([id]),
[writ_issued_on] TEXT
);
CREATE INDEX [idx_elections_parliament_period_id]
ON [elections] ([parliament_period_id]);
CREATE INDEX [idx_elections_electorate_id]
ON [elections] ([electorate_id]);
CREATE INDEX [idx_elections_result_summary_id]
ON [elections] ([result_summary_id]);
CREATE INDEX [idx_elections_general_election_id]
ON [elections] ([general_election_id]);
CREATE INDEX [idx_elections_constituency_group_id]
ON [elections] ([constituency_group_id]);