• 2022-06-16
    查询被借阅过的图书,语句SELECT name from book where____的条件,下列哪一个不能实现。
    A: bno =all (select bno from borrow)
    B: bno =any (select bno from borrow)
    C: bno in (select bno from borrow)
    D: exists t(select * from borrow where bno=book.bno)
  • 举一反三