在Exam数据库中查询借阅次数最多图书的图书编号和名称。
提示:前两本书借阅的次数一样多
使用top N with ties
select top 2 b.bno,b.bname from exam..book b,exam..borrow bo where b.bno=bo.bno group by b.bno,b.bname order by count(*) desc
原文地址:https://www.cnblogs.com/masterchd/p/9330933.html
时间: 2024-10-11 21:53:57