Changes between Version 16 and Version 17 of AdvancedReports


Ignore:
Timestamp:
01/26/22 19:53:03 (3 years ago)
Author:
183060
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v16 v17  
    120120
    121121
     122== Број на закажани термини кај докторите кај кои има такви, во наредните 3 недели
     123
     124{{{#!sql
     125select zafatenost.doktor_id, zafatenost.br_licenca, c.ime,
     126        c.prezime, zafatenost.zakazani_pregledi
     127from (
     128        select d.doktor_id, d.br_licenca, d.oddel_id, d.bolnica_id,
     129        count(r.rezervacija_id) as zakazani_pregledi
     130        from doktor d
     131        join termin t on d.doktor_id = t.doktor_id
     132        join rezervacija r on (t.termin_id, t.doktor_id) = (r.termin_id, r.doktor_id)
     133        where t.vreme between now() and  t.vreme + interval '3 weeks'
     134        group by 1, 2, 3, 4
     135        order by 5 desc
     136) zafatenost
     137join covek c on zafatenost.doktor_id = c.covek_id ;
     138}}}
     139
     140
     141
    122142== Пациент на кој му се извршени највеќе прегледи
    123143