Diferència entre revisions de la pàgina «ASIX/M02/UF2/A02/E1»

De Lordwektabyte Wiki
Salta a la navegació Salta a la cerca
(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...».)
 
Línia 1: Línia 1:
 +
{{Titol|Pt21. Pràctica de consultes amb múltiples taules}}
 
=Guillem Solà i Boeck (Ordinador PC05 (host A10BPC05))=
 
=Guillem Solà i Boeck (Ordinador PC05 (host A10BPC05))=
  

Revisió del 21:06, 14 gen 2018

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]>