On Jun 2, 2011, at 8:45 AM, Peel Lisa wrote:

Hello
 
I need to create a list which will give me details of all the items at one library including the year of publication. Have tried adding publication year to the guided search but no data appears in the column.
 
Apologies for making such a basic request but I have been asked for the report to be done urgently!
 
Any help appreciated
 
Regards
 
Lisa
 
<image001.jpg>
 
 
LISA PEEL, PGDip, MA.
Librarian
César Ritz Colleges Switzerland
1897 Le Bouveret - Switzerland
Tel: +41 24 482 82 82 Fax: +41 24 482 82 80
 
_______________________________________________
Koha mailing list  http://koha-community.org
[email protected]
http://lists.katipo.co.nz/mailman/listinfo/koha



SELECT items.itemcallnumber, items.barcode, biblio.author, biblio.title, biblioitems.publicationyear FROM items JOIN biblio USING (biblionumber) join biblioitems USING (biblionumber) WHERE items.homebranch='yourbranch' limit 150000 ORDER BY items.itemcallnumber asc

notes: 
Paste this into the reports "Create from SQL" section, and run from there.
you'll want to put in your branch code for 'yourbranch'
Set the limit to something above the maximum number of records you expect.

Hope this helps!



_______________________________________________
Koha mailing list  http://koha-community.org
[email protected]
http://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to