home / football

odds

19 rows where match_id = 65034

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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, 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
216490 65034 Bet365 1X2 home 9.5     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216491 65034 Bet365 1X2 draw 5.25     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216492 65034 Bet365 1X2 away 1.33     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216493 65034 Bet&Win 1X2 home 9.0     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216494 65034 Bet&Win 1X2 draw 5.5     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216495 65034 Bet&Win 1X2 away 1.32     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216496 65034 Pinnacle 1X2 home 10.64     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216497 65034 Pinnacle 1X2 draw 5.59     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216498 65034 Pinnacle 1X2 away 1.31     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216499 65034 William Hill 1X2 home 10.0     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216500 65034 William Hill 1X2 draw 5.5     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216501 65034 William Hill 1X2 away 1.29     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216502 65034 VC Bet 1X2 home 11.0     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216503 65034 VC Bet 1X2 draw 5.5     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216504 65034 VC Bet 1X2 away 1.29     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216505 65034 Bet365 over_under_2_5 over 1.67     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216506 65034 Bet365 over_under_2_5 under 2.2     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216507 65034 Pinnacle over_under_2_5 over 1.69     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     Football-Data.co.uk 12  
216508 65034 Pinnacle over_under_2_5 under 2.24     2026-06-11T15:30:04.012656 0 2026-06-11T15:30:04.012656 2026-06-11T15:30:04.012656     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 19.045ms