• 2022-06-12
    下列多条件查询使用正确的有()
    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 } } ] } ]} )
  • A,B,C

    内容

    • 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: &lt;date()-15 B: date()-15 C: &gt;date()-15 D: &lt;date()

    • 3

      在SQL查询语句中,若要查询成绩为60-80分之间(包括60分,不包括80分)的学生的信息,成绩字段的查询条件应设置为______。 A: &gt;60 or &lt;80 B: IN(60,80) C: &gt;=60 And &lt;80 D: &gt;60 and &lt;80

    • 4

      按类别查询图书的平均价格,以下语句正确的是()。(选择一项) A: selectavg(price),typefrombookgroupbytype B: selectcount(price),typefrombookgroupbyprice C: selectavg(price),typefrombookgroupbyprice D: selectcount(price),typefrombookgroupbytype