Wiki Knjižnice Filozofskog Fakulteta u Zagrebu
Podaci o korisnicima i posudbi: Revision 31
Upisani korisniciRazdoblje 16.3.2009. do 25.9.2013. 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 | 301 | | Knjižničari | 71 | | Pomoćno osoblje u knjižnici | 2 | | Manifestacije | 7 | | Međuknjižnična | 81 | | Nastavnici FF-a | 749 | | Počasni članovi | 7 | | Demonstratori | 47 | | Studenti FF-a | 10791 | | Bivši studenti | 44 | | Knjigovežnica | 1 | | Vanjski suradnici | 59 | | Nenastavno osoblje FF-a | 83 | +-------------------------------+-------+ Ukupno: 12243
Aktivni korisnici
Ukupno od otvaranja
Kalendarske godina
Školske godina
Posudbatransakcije: posudba, vraćanje, produljenje roka
Ukupno od otvaranja
Kalendarske godine
Školske godine
mysql> 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 ; |