予想よりも多くの行を返す SQL サーバー クエリがあります。
select
b.isbn, l.lend_no, s.first_name
from
dbo.books b, dbo.lending l, dbo.students s
where
(l.act between '4/16/2013' and '4/16/2013')
and (l.stat ='close')`
私がしたいのはisbn
、その本の返却日が指定された日付の間にあり、貸し出しステータスがクローズされていることです。貸し出しテーブルには、指定された日付に返された貸し出しが2つしかありませんが、クエリで304行が返されlend_no
ますstudent name