country_languages
Data source: ISO
3 rows where country_code = "PE"
This data as json, CSV (advanced)
Suggested facets: local_short_name
| Link | country_code | language_code | local_short_name |
|---|---|---|---|
| PE,ay | PE | ay | Perú |
| PE,es | PE | es | Perú (el) |
| PE,qu | PE | qu | Perú |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE country_languages (
country_code text NOT NULL
, language_code text NOT NULL
, local_short_name text
, PRIMARY KEY (country_code , language_code)
, FOREIGN KEY (country_code) REFERENCES countries (alpha_2_code) ON DELETE CASCADE
, FOREIGN KEY (language_code) REFERENCES languages (alpha_2_code) ON DELETE CASCADE
);