Data source: ISO

26 rows where language_code = "ar"

View and edit SQL

Link country_code language_code local_short_name
AE ar Al Imārāt
BH ar Al Baḩrayn
DJ ar Jībūtī
DZ ar Al Jazā'ir
EG ar Mişr
EH ar Aş Şaḩrā' al Gharbīyah
ER ar Irītrīyā
IL ar Isrā'īl
IQ ar Al ‘Irāq
JO ar Al Urdun
KM ar Al Qamar
KW ar Al Kuwayt
LB ar Lubnān
LY ar Lībiyā
MA ar Al Maghrib
MR ar Mūrītāniyā
OM ar ‘Umān
PS ar Dawlat Filasţīn
QA ar Qaţar
SA ar As Su‘ūdīyah
SD ar As Sūdān
SO ar Aş Şūmāl
SY ar Al Jumhūrīyah al ‘Arabīyah as Sūrīyah
TD ar Tshād
TN ar Tūnis
YE ar Al Yaman

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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
);