demografia.tasa_divorcialidad_edad_sexo
Divorce rate in Spain, disaggregated by province, sex, age group and year. The results for the 2005-2010 period only take into account divorces of marriages between people of different sexes. Age group categories vary slightly between the 2005-2010 and 2010-2023 periods. Unlike the crude divorce rates published separately for provinces and autonomous communities, this indicator is not a crude rate but a specific rate by age group and sex.
- Time period: 2005-2023, annually (only heterosexual marriages for the 2005-2010 period)
- Regional breakdown: provincias
Columns
| Name | Data Type | Is Nullable | Description |
|---|---|---|---|
| tasa_divorcialidad_id | serial | NO | primary key |
| anio | int | NO | year |
| provincia_id | int | YES | references geo.provincias |
| sexo | enums.sexo_enum | NO | sex |
| grupo_edad | varchar | YES | age group, categories vary slightly across periods |
| tasa_divorcialidad | float | NO | divorce rate per 1000 people |
Table definition
CREATE TABLE
demografia.tasa_divorcialidad_edad_sexo (
tasa_divorcialidad_id serial PRIMARY KEY,
anio int NOT NULL CHECK (
anio BETWEEN 1900 AND EXTRACT(
YEAR
FROM
CURRENT_DATE
)
),
provincia_id int REFERENCES geo.provincias (provincia_id),
sexo enums.sexo_enum NOT NULL,
grupo_edad varchar CHECK (
grupo_edad ~ '^\\d+-\\d+$'
OR grupo_edad ~ '^<\\d+$'
OR grupo_edad ~ '^>\\d+$'
),
tasa_divorcialidad float NOT NULL CHECK (
tasa_divorcialidad >= 0
AND tasa_divorcialidad <= 1000
)
);
Notable transformations
- Merged datasets covering 2005-2010 and 2010-2023. First period does not include same sex marriages.
- Excluded entries with missing
tasa_divorcialidad. - Dropped rows with aggregated data for
sexoandprovincia_id
Source
Data for 2005-2010 extracted from Instituto Nacional de Estadística (INE)
Data for 2010-2023 extracted from Instituto Nacional de Estadística (INE)
Consulted on 16 June 2025.