Report Name: Items list by accession number range and sorted by call number Purpose: Display/Print of New Arrivals list Sorted by call number (Subject wise) may be useful for cover flow and public reports. Status: Complete tested on Koha 16.11.07 Note: Replace 'XXXX' with your range of barcode SELECT biblio.author,biblio.title,items.itemcallnumber,items.barcode,isbn FROM items LEFT JOIN biblioitems ON (items.biblioitemnumber=biblioitems.biblioitemnumber) LEFT JOIN biblio ON (biblioitems.biblionumber=biblio.biblionumber) WHERE cast(items.barcode AS UNSIGNED) BETWEEN 'XXXX' AND 'XXXX' ORDER BY items.itemcallnumber ASC