salud.ive_total
Total voluntary pregnancy terminations, notifying centers and rate per 1000 women.
- Time period: 2014-2023, annual
- Regional breakdown: Spain
Columns
| Name | Data Type | Is Nullable | Description |
|---|---|---|---|
| ive_total_id | serial | NO | primary key |
| anio | int | NO | year |
| centros_notificadores | int | NO | number of notifying centers |
| ives | int | NO | number of interruptions |
| tasa | float | NO | rate per 1000 women |
Table definition
CREATE TABLE
salud.ive_total (
ive_total_id serial PRIMARY KEY,
anio int NOT NULL CHECK (
anio BETWEEN 1900 AND EXTRACT(
YEAR
FROM
CURRENT_DATE
)
),
centros_notificadores int NOT NULL CHECK (centros_notificadores >= 0),
ives int NOT NULL CHECK (ives >= 0),
tasa float NOT NULL CHECK (
tasa >= 0
AND tasa <= 1000
)
);
Notable transformations
No notable transformations were performed over this dataset.
Source
Data extracted from Ministerio de Sanidad. Consulted on 9 June 2025.