Merhabalar,
KOHA’da Katalog kaydınızı yaptınız ve materyal eklediniz. Barkod Numarası (Ya da Demirbaş Numarası) olmayan materyalleri aşağıdaki sorgu ile tespit edebilirsiniz. Bu sorguda E-Kitaplar değerlendirme dışı bırakılmıştır.
KOHA SQL Sorgusu
SELECT
Concat('<a href=\"/cgi-bin/koha/catalogue/detail.pl?biblionumber=', biblio.biblionumber, '\">', biblio.biblionumber, '</a>') AS biblionumbers,
items.itype,
items.dateaccessioned,
items.itemcallnumber,
biblioitems.itemtype,
biblioitems.isbn,
biblio.author,
biblio.title,
biblioitems.pages,
biblioitems.publishercode,
biblioitems.place,
biblio.copyrightdate
FROM
items
LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
LEFT JOIN biblio ON biblioitems.biblionumber = biblio.biblionumber
WHERE
biblioitems.itemtype NOT LIKE 'EBOOK' and
items.barcode IS NULL
order by biblio.title
Kazım ŞENTÜRK
19.05.2020
Kütüphaneciler için adım adım ihale rehberi sitesinden daha fazla şey keşfedin
Subscribe to get the latest posts sent to your email.
Son yorumlar