tecnologia_y_medios.uso_internet_personas
Percentages of people according to type of internet use.
- Time period: 2006-2024, anually
- Regional breakdown: comunidades autónomas
Columns
| Name | Data Type | Is Nullable | Description |
|---|---|---|---|
| uso_internet_personas_id | serial | NO | primary key |
| anio | int | NO | year |
| porcentaje | numeric | NO | percentage |
| comunidad_autonoma_id | int | NO | references geo.comunidades_autonomas |
| tipo_uso | text | NO | type of internet use |
Table definition
CREATE TABLE
tecnologia_y_medios.uso_internet_personas (
uso_internet_personas_id serial PRIMARY KEY,
anio int NOT NULL CHECK (
anio BETWEEN 1900 AND EXTRACT(
YEAR
FROM
CURRENT_DATE
)
),
porcentaje numeric NOT NULL CHECK (
porcentaje >= 0
AND porcentaje <= 100
),
comunidad_autonoma_id int NOT NULL REFERENCES geo.comunidades_autonomas (comunidad_autonoma_id),
tipo_uso text NOT NULL CHECK (
tipo_uso IN (
'Personas que han utilizado Internet en los últimos 3 meses',
'Personas que han utilizado Internet diariamente (al menos 5 días a la semana)',
'Personas que han comprado a través de Internet en los últimos 3 meses',
'Personas que usan el teléfono móvil'
)
)
);
Notable transformations
No notable transformations were performed over this dataset.
Source
Data extracted from Instituto Nacional de Estadística (INE). Consulted on 3 June 2025.