查询不比计算机类图书便宜的书,语句中SELECT name ,price from book where price____(select price from book where category='计算机')缺省的部分应是()。
A: > all
B: > any
C:
A: > all
B: > any
C:
举一反三
- 查询比计算机类图书便宜的书,语句中 SELECT name ,price from book where price____ (select price from book where category='计算机')缺省的部分应是()。 A: > all B: > any C: < any D: < all
- 查 询 比 计 算 机 类 图 书 贵 的 书 , 语 句 中 SELECT name ,price from book where[br][/br]price________[br][/br] (select price from book where category='计算机')缺省的部分应是( ). A: all B: any C: D:
- 以下语句的作用是:查询book表中图书价格大于图书均价的图书信息select * from book where _____>(select avg(price) from Book )则____处的内容为,
- 查询book表中price字段的最大值,查询语句是: A: select max(price) from book; B: select min(price) from book; C: select price from min book; D: select price from max book;
- 以下____完整,语句的作用是:查询book表中图书价格大于图书均价的图书信息select * from book where _____>;(select avg(price) from Book )