Department wise, Itemtype wise and Collection wise Number of Books.
- Crete the New SQL Report
- Copy and Paste following lines in the SQL report. Save and close.
Department Wise Number of Books.
Report-2
SELECT location AS 'Department',COUNT(barcode) AS Count FROM items WHERE barcode <> ''
AND barcode IS NOT NULL GROUP BY location
Report-2
Item Type Wise Number of Books.
SELECT itype AS 'Department',COUNT(barcode) AS Count FROM items WHERE barcode <> ''
AND barcode IS NOT NULL GROUP BY itype
AND barcode IS NOT NULL GROUP BY itype
Report-3
0 Comments