Minimum Wages
Eurostat code: tps00155 ยท (2020-S1 - 2025-S2)
@eurostat.tps00155
Eurostat code: tps00155 ยท (2020-S1 - 2025-S2)
@eurostat.tps00155
This Eurostat dataset contains data on minimum wages, as collected and published by the Statistical Office of the European Union.
raw: Original table as downloaded from Eurostat.tidy: A cleaned and transformed version of the raw table, where time period values appear as rows instead of columns (unpivoted format).Last updated: 2025-08-12T23:00:00+0200
CREATE TABLE raw (
  "freq" VARCHAR,
  "currency" VARCHAR,
  "geo" VARCHAR,
  "n_2020_s1" DOUBLE  -- 2020-S1,
  "n_2020_s2" DOUBLE  -- 2020-S2,
  "n_2021_s1" DOUBLE  -- 2021-S1,
  "n_2021_s2" DOUBLE  -- 2021-S2,
  "n_2022_s1" DOUBLE  -- 2022-S1,
  "n_2022_s2" DOUBLE  -- 2022-S2,
  "n_2023_s1" DOUBLE  -- 2023-S1,
  "n_2023_s2" DOUBLE  -- 2023-S2,
  "n_2024_s1" DOUBLE  -- 2024-S1,
  "n_2024_s2" DOUBLE  -- 2024-S2,
  "n_2025_s1" DOUBLE  -- 2025-S1,
  "n_2025_s2" DOUBLE  -- 2025-S2
);CREATE TABLE tidy (
  "freq" VARCHAR,
  "currency" VARCHAR,
  "geo" VARCHAR,
  "time_period" VARCHAR,
  "value" DOUBLE
);Anyone who has the link will be able to view this.