Hi.
Thank you for helping me out.
I used the SQL you provided and edit a little bit because it shows error.
Below is the final script that worked.
SELECT count(statistics.type) AS 'Checkouts', (items.itemcallnumber) AS
> 'Call Number', (items.barcode) AS 'Accession Number', biblio.title AS
> 'Tit
Hello,
Try this :
SELECT biblio.title, count(statistics.type) AS 'Checkouts',
(items.itemcallnumber) AS
'Call Number', (items.barcode) AS 'Accession Number'
FROM borrowers
LEFT JOIN statistics ON
(statistics.borrowernumber=borrowers.borrowernumber)
LEFT JOIN items ON (items.itemnumber = s
How do I add title in the SQL report below to generate circulation
statistics by call number?
SELECT count(statistics.type) AS 'Checkouts', (items.itemcallnumber) AS
> 'Call Number', (items.barcode) AS 'Accession Number'
> FROM borrowers
> LEFT JOIN statistics ON
> (statistics.borrowernumber=bor
3 matches
Mail list logo