Baselight

Lottery EuroMillions Data

A Dataset of Draw Dates, Winning Numbers, and Jackpot Trends from 2004 Onwards

@kaggle.sihantao0626_lottery_euromillions_dataset

Loading...
Loading...

About this Dataset

Lottery EuroMillions Data

The dataset contains 1,788 entries
from 2004-02-13 to 2024-11-08
and 5 columns:

Columns:
Date: The draw date, stored as a string.
Main_Numbers: A string of comma-separated main numbers drawn (5 numbers per draw).
Lucky_Stars: A string of comma-separated Lucky Stars drawn (2 numbers per draw).
Millionaire_Maker: A code for the Millionaire Maker draw, with 1,488 non-null values, indicating it was not always included.
Jackpot: The jackpot amount, often formatted with a pound symbol (£) and sometimes includes the note "Rolled" if the jackpot was not won.

Hope this helps! Happy to share the code to backfill historical data and update latest data.

Tables

Euromillions

@kaggle.sihantao0626_lottery_euromillions_dataset.euromillions
  • 78.63 KB
  • 1788 rows
  • 5 columns
Loading...

CREATE TABLE euromillions (
  "date" TIMESTAMP,
  "main_numbers" VARCHAR,
  "lucky_stars" VARCHAR,
  "millionaire_maker" VARCHAR,
  "jackpot" VARCHAR
);

Share link

Anyone who has the link will be able to view this.