• 2022-06-07
    已知图书管理数据库中图书表的结构如下:图书(ISBN号,图书名,出版社,作者),现要查询书名中含有“软件”关键词的图书的信息,则查询语句应该是()
    A: select * from 图书 where 图书名 like %软件%
    B: select * from 图书 where 图书名 like %软件
    C: select * from 图书 where 图书名 like _软件_
    D: select * from 图书 where 图书名 like _软件
  • 举一反三