Wiki Knjižnice Filozofskog Fakulteta u Zagrebu
Podaci o korisnicima i posudbi: Revision 101
Aktivni korisniciAktivni korisnici su one osobe koje su barem jednom u analiziranom razdoblju posudile ili vratile knjigu ili su produžile rok posudbe. Ukupno od otvaranja
Kalendarske godine
Školske godine
mysql> select count(distinct borrowernumber) from statistics ; mysql> select type, count(distinct borrowernumber) from statistics where datetime between '2017-10-01' and '2018-09-23' group by type ; Posudbatransakcije: posudba, vraćanje, produljenje roka
Ukupno od otvaranja
Kalendarske godine
Školske godine
mysql> select type, count(*) from statistics where borrowernumber is not null and date(datetime) between '2016-01-01' and '2016-12-31' group by type ; mysql> select itemnumber, count(*) from statistics where type = 'issue' and borrowernumber is not null and date(datetime) between '2016-01-01' and '2016-12-31' group by itemnumber ; mysql> select biblionumber, count(*) from statistics join items on items.itemnumber=statistics.itemnumber where type = 'issue' and borrowernumber is not null and date(datetime) between '2016-01-01' and '2016-12-31' group by biblionumber ; |