|
Wiki Knjižnice Filozofskog Fakulteta u Zagrebu
Podaci o korisnicima i posudbi: Revision 37
Upisani korisniciRazdoblje '2009-03-16' and '2014-02-20'.
mysql> select description as kategorija, count(*) as broj from borrowers join categories on categories.categorycode=borrowers.categorycode where borrowers.categorycode <> 'SURAD' and borrowers.categorycode <> 'MKPO' group by borrowers.categorycode ;
+-------------------------------+-------+
| kategorija | broj |
+-------------------------------+-------+
| Automatski uneseni korisnici | 316 |
| Knjižničari | 71 |
| Pomoćno osoblje u knjižnici | 2 |
| Manifestacije | 9 |
| Međuknjižnična | 87 |
| Nastavnici FF-a | 763 |
| Počasni članovi | 7 |
| Demonstratori | 52 |
| Studenti FF-a | 11929 |
| Bivši studenti | 44 |
| Upisani 2013 | 147 |
| Knjigovežnica | 1 |
| Vanjski korisnci | 1 |
| Vanjski suradnici | 61 |
| Nenastavno osoblje FF-a | 83 |
+-------------------------------+-------+
Ukupno: 13.573
Aktivni korisnici
Ukupno od otvaranja
Kalendarske godina
Školske godina
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 '2009-03-16' and '2013-09-24' group by type ; mysql> select itemnumber, count(*) from statistics where type = 'issue' and borrowernumber is not null and date(datetime) between '2009-03-16' and '2013-09-24' 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 '2009-03-16' and '2013-09-24' group by biblionumber ; |