ASIX/M02/UF2/A02/E1
< ASIX/M02/UF2
Salta a la navegació
Salta a la cerca
La revisió el 20:39, 14 gen 2018 per Guillem (discussió | contribucions) (Es crea la pàgina amb «=Guillem Solà i Boeck (Ordinador PC05 (host A10BPC05))= ==1. Nom dels països de parla catalana== {{QWorld |<nowiki>MariaDB [world]> select Name from Country,Countr...».)
Contingut
Guillem Solà i Boeck (Ordinador PC05 (host A10BPC05))
1. Nom dels països de parla catalana
MariaDB [world]> MariaDB [world]> select Name from Country,CountryLanguage where Country.Code=CountryLanguage.CountryCode and CountryLanguage.Language="Catalan";
+---------+ | Name | +---------+ | Andorra | | Spain | +---------+ 2 rows in set (0.00 sec) MariaDB [world]>
2. Nom dels països amb 10 o més llengües
MariaDB [world]> consulta
resultat MariaDB [world]>
3. Mostra el nom del país on el percentatge d'ús d'anglès és més elevat
MariaDB [world]> MariaDB [world]> select Name from Country,CountryLanguage where Country.Code=CountryLanguage.CountryCode and CountryLanguage.Language="English" order by CountryLanguage.Percentage desc limit 1;
+---------+ | Name | +---------+ | Bermuda | +---------+ 1 row in set (0.00 sec) MariaDB [world]>