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