home / football

odds

10 rows where match_id = 65434

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: recorded_at (date), created_at (date), updated_at (date)

odds_id ▼ match_id bookmaker market selection value value_open implied_probability recorded_at is_closing created_at updated_at created_by_run_id updated_by_run_id source_id source_raw_key
221022 65434 Bet365 1X2 home 1.8     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221023 65434 Bet365 1X2 draw 4.1     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221024 65434 Bet365 1X2 away 3.9     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221025 65434 Pinnacle 1X2 home 1.87     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221026 65434 Pinnacle 1X2 draw 4.09     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221027 65434 Pinnacle 1X2 away 4.0     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221028 65434 Bet365 over_under_2_5 over 1.53     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221029 65434 Bet365 over_under_2_5 under 2.5     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221030 65434 Pinnacle over_under_2_5 over 1.55     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  
221031 65434 Pinnacle over_under_2_5 under 2.6     2026-06-11T15:30:04.411650 0 2026-06-11T15:30:04.411650 2026-06-11T15:30:04.411650     Football-Data.co.uk 12  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE odds (
	odds_id INTEGER NOT NULL, 
	match_id INTEGER NOT NULL, 
	bookmaker VARCHAR(64) NOT NULL, 
	market VARCHAR(32) NOT NULL, 
	selection VARCHAR(32) NOT NULL, 
	value FLOAT NOT NULL, 
	value_open FLOAT, 
	implied_probability FLOAT, 
	recorded_at DATETIME NOT NULL, 
	is_closing BOOLEAN NOT NULL, 
	created_at DATETIME NOT NULL, 
	updated_at DATETIME NOT NULL, 
	created_by_run_id INTEGER, 
	updated_by_run_id INTEGER, 
	source_id INTEGER NOT NULL, 
	source_raw_key VARCHAR(512), 
	PRIMARY KEY (odds_id), 
	CONSTRAINT uq_odds_match_bookmaker_market_selection_time UNIQUE (match_id, bookmaker, market, selection, recorded_at), 
	FOREIGN KEY(match_id) REFERENCES "match" (match_id), 
	FOREIGN KEY(created_by_run_id) REFERENCES ingestion_run (run_id), 
	FOREIGN KEY(updated_by_run_id) REFERENCES ingestion_run (run_id), 
	FOREIGN KEY(source_id) REFERENCES data_source (source_id)
);
CREATE INDEX ix_odds_created_by_run_id ON odds (created_by_run_id);
CREATE INDEX ix_odds_recorded_at ON odds (recorded_at);
CREATE INDEX ix_odds_source_id ON odds (source_id);
CREATE INDEX ix_odds_market ON odds (market);
CREATE INDEX ix_odds_updated_by_run_id ON odds (updated_by_run_id);
CREATE INDEX ix_odds_source_raw_key ON odds (source_raw_key);
CREATE INDEX ix_odds_bookmaker ON odds (bookmaker);
CREATE INDEX ix_odds_match_id ON odds (match_id);
Powered by Datasette · Queries took 13.932ms