Funcions SQL

De wikijoan
La revisió el 19:28, 7 feb 2022 per Joan (discussió | contribucions) (Es crea la pàgina amb «<pre> Nom del municipi més llarg select municipi from municipis where length(municipi) = ( select max(length(municipi)) from municipis ) Cruïlles, Monells i Sant S...».)
(dif) ← Versió més antiga | Versió actual (dif) | Versió més nova → (dif)
Salta a la navegació Salta a la cerca
Nom del municipi més llarg

select municipi from municipis where length(municipi) = (
select max(length(municipi)) from municipis
)

Cruïlles, Monells i Sant Sadurní de l'Heura


seleccionar aleatòriament una província;

select round(rand()*52);
select distinct round(rand()*51)+1 as num from municipis order by num;
select round(rand()*51)+1;
select provincia from provincies where id_prov IN (select round(rand()*51)+1);
---
select provincia from provincies limit 1 offset x

creat per Joan Quintana Compte, febrer 2022