3. 已知图书管理数据库中图书表的结构如下:图书(ISBN号,图书名,出版社,作者),现要查询书名中含有“软件”关键词的图书的信息,则查询语句应该是( )
A.select * from 图书 where 图书名 like '%软件%'
B.select * from 图书 where 图书名 like '%软件'
C.select * from 图书 where 图书名 like '_软件_'
D.select * from 图书 where 图书名 like '_软件'
正确答案是A
3. 已知图书管理数据库中图书表的结构如下:图书(ISBN号,图书名,出版社,作者),现要查询书名中含有“软件”关键词的图书的信息,则查询语句应该是( )
A.select * from 图书 where 图书名 like '%软件%'
B.select * from 图书 where 图书名 like '%软件'
C.select * from 图书 where 图书名 like '_软件_'
D.select * from 图书 where 图书名 like '_软件'
正确答案是A