A:
B: and查询db.collection.find({ $and : [ { "age" : {$gt : 10 }} , { "gender" : "man" } ]})
C: #or查询db.collection.find({ $or : [ {"age" : {$gt : 10 }}, { "gender" : "man"} ]})
D:
E: and查询和or查询db.inventory.find( { $and : [ { $or : [ { price : 0.99 }, { price : 1.99 } ] }, { $or : [ { sale : true }, { qty : { $lt : 20 } } ] } ]} )
F:
G: and查询和or查询db.inventory.find( { $or: [ { $and : [ { price : 0.99 }, { price : 1.99 } ] }, { $: [ { sale : true }, { qty : { $lt : 20 } } ] } ]} )
举一反三
- find只能指定一个查询条件( )
- 在linux的查询命令有那些()。 A: man B: find C: whereis D: locate
- 查询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;
- 查询比计算机类图书便宜的书,语句中 SELECT name ,price from book where price____ (select price from book where category='计算机')缺省的部分应是()。 A: > all B: > any C: < any D: < all
- 有如下SQL语句: SELECT DISTINCT productName, price FROM product WHERE (price>;(SELECT AVG(price) FROM product)) ORDER BY price DESC; 下面说法错误的是( )。 A: "SELECT AVG(price) FROM product "是子查询 B: "ORDER BY price DESC"是指按price从低到高顺序排列 C: 查询结果显示的是大于平均价格的产品记录 D: 此查询显示的字段只有"productName"和"price"
内容
- 0
为查询Products表中,价格Price在5-10元之间的产品信息,请补全以下SELECT语句 SELECT ProductID,ProductName,Price FROM products WHERE_________ AND_________ A: price>=5,price<=10 B: price>5,price<10 C: price<=5,price<=10 D: price>=5,price>=10
- 1
查询图书价格在30到50之间的图书名、作者和出版社,其中的查询条件表达式为() A: where price>;=30 AND price<;=50 B: where price>;=30 OR price<;=50 C: where priceBETWEEN 30 AND 50 D: where priceBETWEEN50 AND 30
- 2
查询15天前的记录应使用的查询条件为( )。 A: <date()-15 B: date()-15 C: >date()-15 D: <date()
- 3
在SQL查询语句中,若要查询成绩为60-80分之间(包括60分,不包括80分)的学生的信息,成绩字段的查询条件应设置为______。 A: >60 or <80 B: IN(60,80) C: >=60 And <80 D: >60 and <80
- 4
按类别查询图书的平均价格,以下语句正确的是()。(选择一项) A: selectavg(price),typefrombookgroupbytype B: selectcount(price),typefrombookgroupbyprice C: selectavg(price),typefrombookgroupbyprice D: selectcount(price),typefrombookgroupbytype