I have this query which calculates the the count of total books which has same name . I wanted to select other fields like for each item I want its other columns too
SELECT name, COUNT(name)
FROM b6j_items
GROUP BY name
HAVING COUNT(name) > 1
ORDER BY name desc