You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tady konkrétně chybí odfiltrování vládních činitelů, řazení atd. A jistě by to šlo napsat líp
with poslanci as (
SELECT
id_osoba, jmeno, prijmeni
FROMpsp.poslanci_osoby
full outer JOINpsp.poslanci_zarazeni zar USING (id_osoba)
full outer JOINpsp.poslanci_organy org ONorg.id_organ=zar.id_ofWHEREorg.zkratka='PSP9'andzar.do_o is null
)
SELECT
id_osoba,
max(jmeno) jmeno,
max(prijmeni) prijmeni,
count(distinct nazev_organu_cz) pocet,
string_agg(DISTINCT nazev_organu_cz, ', ') soucasne_organy
FROM
poslanci
left JOINpsp.poslanci_zarazeni zar USING (id_osoba)
left JOINpsp.poslanci_organy org ONorg.id_organ=zar.id_ofand cl_funkce=0and do_o is nulland do_organ is nullAND id_typ_organu in (3,4)
GROUP BY
id_osoba
The text was updated successfully, but these errors were encountered:
Různý věci v reálným životě jdou dobře použít na trénování SQL
https://twitter.com/honzabartosek/status/1526999774985175041
tady konkrétně chybí odfiltrování vládních činitelů, řazení atd. A jistě by to šlo napsat líp
The text was updated successfully, but these errors were encountered: