Search Results

0
votes

sql server count of max values without subquery

How about this? select LibraryBranchId, MAX(daysCheckedOut), count(daysCheckedOut) from books B where daysCheckedOut = (select MAX(daysCheckedOut) from books where LibraryBranchID = …