下面说一下,mongodb select的常用操作

测试数据

  1. { "_id" : 1, "title" : "红楼梦", "auther" : "曹雪芹", "typeColumn" : "test", "money" : 80, "code" : 10 }
  2. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }
  3. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  4. { "_id" : 4, "title" : "将近酒", "auther" : "李白", "money" : 90, "code" : 40 }

1,取表条数

  1. > db.books.count();
  2. 4
  3. > db.books.find().count();
  4. 4
  5. > db.books.count({auther: "李白" });
  6. 2
  7. > db.books.find({money:{$gt:40,$lte:60}}).count();
  8. 1
  9. > db.books.count({money:{$gt:40,$lte:60}});
  10. 1

php代码如下,按顺序对应的

  1. $collection->count();             //结果:4
  2. $collection->find()->count();     //结果:4
  3. $collection->count(array("auther"=>"李白"));   //结果:2
  4. $collection->find(array("money"=>array('$gt'=>40,'$lte'=>60)))->count();     //结果:1
  5. $collection->count(array("money"=>array('$gt'=>40,'$lte'=>60)));    //结果:1

提示:$gt为大于、$gte为大于等于、$lt为小于、$lte为小于等于、$ne为不等于、$exists不存在、$in指定范围、$nin指定不在某范围

2,取单条数据

  1. > db.books.findOne();
  2. {
  3. "_id" : 1,
  4. "title" : "红楼梦",
  5. "auther" : "曹雪芹",
  6. "typeColumn" : "test",
  7. "money" : 80,
  8. "code" : 10
  9. }
  10. > db.books.findOne({auther: "李白" });
  11. {
  12. "_id" : 3,
  13. "title" : "朝发白帝城",
  14. "auther" : "李白",
  15. "typeColumn" : "test",
  16. "money" : 30,
  17. "code" : 30
  18. }

php代码如下,按顺序对应的

  1. $collection->findOne();
  2. $collection->findOne(array("auther"=>"李白"));

3,find snapshot 游标

  1. > db.books.find( { $query: {auther: "李白" }, $snapshot: true } );
  2. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  3. { "_id" : 4, "title" : "将近酒", "auther" : "李白", "money" : 90, "code" : 40 }

php代码如下

  1. /**
  2. * 注意:
  3. * 在我们做了find()操作,获得 $result 游标之后,这个游标还是动态的.
  4. * 换句话说,在我find()之后,到我的游标循环完成这段时间,如果再有符合条件的记录被插入到collection,那么这些记录也会被$result 获得.
  5. */
  6. $result = $collection->find(array("auther"=>"李白"))->snapshot();
  7. foreach ($result as $id => $value) {
  8. var_dump($value);
  9. }

4,自定义列显示

  1. > db.books.find({},{"money":0,"auther":0});      //money和auther不显示
  2. { "_id" : 1, "title" : "红楼梦", "typeColumn" : "test", "code" : 10 }
  3. { "_id" : 2, "title" : "围城", "typeColumn" : "test", "code" : 20 }
  4. { "_id" : 3, "title" : "朝发白帝城", "typeColumn" : "test", "code" : 30 }
  5. { "_id" : 4, "title" : "将近酒", "code" : 40 }
  6. > db.books.find({},{"title":1});          //只显示title列
  7. { "_id" : 1, "title" : "红楼梦" }
  8. { "_id" : 2, "title" : "围城" }
  9. { "_id" : 3, "title" : "朝发白帝城" }
  10. { "_id" : 4, "title" : "将近酒" }
  11. /**
  12. *money在60到100之间,typecolumn和money二列必须存在
  13. */
  14. > db.books.find({money:{$gt:60,$lte:100}},{"typeColumn":1,"money":1});
  15. { "_id" : 1, "typeColumn" : "test", "money" : 80 }
  16. { "_id" : 4, "money" : 90 }

php代码如下,按顺序对应的

  1. $result = $collection->find()->fields(array("auther"=>false,"money"=>false));    //不显示auther和money列
  2. $result = $collection->find()->fields(array("title"=>true));      //只显示title列
  3. /**
  4. *money在60到100之间,typecolumn和money二列必须存在
  5. */
  6. $where=array('typeColumn'=>array('$exists'=>true),'money'=>array('$exists'=>true,'$gte'=>60,'$lte'=>100));
  7. $result = $collection->find($where);

5,分页

  1. > db.books.find().skip(1).limit(1);  //跳过第条,取一条
  2. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }

这根mysql,limit,offset有点类似,php代码如下

  1. $result = $collection->find()->limit(1)->skip(1);//跳过 1 条记录,取出 1条

6,排序

  1. > db.books.find().sort({money:1,code:-1});    //1表示降序 -1表示升序,参数的先后影响排序顺序
  2. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  3. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }
  4. { "_id" : 1, "title" : "红楼梦", "auther" : "曹雪芹", "typeColumn" : "test", "money" : 80, "code" : 10 }
  5. { "_id" : 4, "title" : "将近酒", "auther" : "李白", "money" : 90, "code" : 40 }

php代码如下

  1. $result = $collection->find()->sort(array('code'=>1,'money'=>-1));

7,模糊查询

  1. > db.books.find({"title":/城/});      //like '%str%' 糊查询集合中的数据
  2. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }
  3. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  4. > db.books.find({"auther":/^李/});    //like 'str%' 糊查询集合中的数据
  5. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  6. { "_id" : 4, "title" : "将近酒", "auther" : "李白", "money" : 90, "code" : 40 }
  7. > db.books.find({"auther":/书$/});   //like '%str' 糊查询集合中的数据
  8. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }
  9. > db.books.find( { "title": { $regex: '城', $options: 'i' } } );   //like '%str%' 糊查询集合中的数据
  10. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }
  11. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }

php代码如下,按顺序对应的

  1. $param = array("title" => new MongoRegex('/城/'));
  2. $result = $collection->find($param);
  3. $param = array("auther" => new MongoRegex('/^李/'));
  4. $result = $collection->find($param);
  5. $param = array("auther" => new MongoRegex('/书$/'));
  6. $result = $collection->find($param);

8,$in和$nin

  1. > db.books.find( { money: { $in: [ 20,30,90] } } );   //查找money等于20,30,90的数据
  2. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  3. { "_id" : 4, "title" : "将近酒", "auther" : "李白", "money" : 90, "code" : 40 }
  4. > db.books.find( { auther: { $in: [ /^李/,/^钱/ ] } } );    //查找以李,钱开头的数据
  5. { "_id" : 2, "title" : "围城", "auther" : "钱钟书", "typeColumn" : "test", "money" : 56, "code" : 20 }
  6. { "_id" : 3, "title" : "朝发白帝城", "auther" : "李白", "typeColumn" : "test", "money" : 30, "code" : 30 }
  7. { "_id" : 4, "title" : "将近酒", "auther" : "李白", "money" : 90, "code" : 40 }

php代码如下,按顺序对应的

  1. $param = array("money" => array('$in'=>array(20,30,90)));
  2. $result = $collection->find($param);
  3. foreach ($result as $id=>$value) {
  4. var_dump($value);
  5. }
  6. $param = array("auther" => array('$in'=>array(new MongoRegex('/^李/'),new MongoRegex('/^钱/'))));
  7. $result = $collection->find($param);
  8. foreach ($result as $id=>$value) {
  9. var_dump($value);
  10. }

 9,$or

  1. > db.books.find( { $or: [ { money: 20 }, { money: 80 } ] } );   //查找money等于20,80的数据
  2. { "_id" : 1, "title" : "红楼梦", "auther" : "曹雪芹", "typeColumn" : "test", "money" : 80, "code" : 10 }

php代码如下

  1. $param = array('$or'=>array(array("money"=>20),array("money"=>80)));
  2. $result = $collection->find($param);
  3. foreach ($result as $id=>$value) {
  4. var_dump($value);
  5. }

 10,distinct

  1. > db.books.distinct( 'auther' );
  2. [ "曹雪芹", "钱钟书", "李白" ]
  3. > db.books.distinct( 'auther' , { money: { $gt: 60 } });
  4. [ "曹雪芹", "李白" ]

php代码如下

  1. $result = $curDB->command(array("distinct" => "books", "key" => "auther"));
  2. foreach ($result as $id=>$value) {
  3. var_dump($value);
  4. }
  5. $where = array("money" => array('$gte' => 60));
  6. $result = $curDB->command(array("distinct" => "books", "key" => "auther", "query" => $where));
  7. foreach ($result as $id=>$value) {
  8. var_dump($value);
  9. }

先写到这儿,上面只是SELECT的一些常用操作,接下来,还会写一点。

mongodb select php操作 命令行操作的更多相关文章

  1. MySQL基本操作之命令行操作

    MySQL基础操作 MySQL基础操作--命令行操作

  2. 实战Git命令(界面操作+命令行)

    先说明下公司的发版步骤,当需要开发一个新的功能,先从master分支中拉出一个自己的分支a(假设分支为a),在a分支开发功能完后,需要切换到dev分支,然后把自己的分支a合到dev分支,部署测试环境让 ...

  3. MySQL sql命令行操作数据库

    数据库命令行操作 命令行操作数据库, [if exists] 可加可不加, 命令行操作一定要加英文分号 ; 结尾 创建数据库 : create database [if not exists] 数据库 ...

  4. MongoDB命令行操作

    本文专门介绍MongoDB的命令行操作.其实,这些操作在MongoDB官网提供的Quick Reference上都有,但是英文的,为了方便,这里将其稍微整理下,方便查阅. 这里用来做测试的是远端(10 ...

  5. mysql 命令行操作入门(详细讲解版)

    之前分享过多次Mysql主题,今天继续分享mysql命令行入门   1. 那么多mysql客户端工具,为何要分享命令行操作? -快捷.简单.方便 -在没有客户端的情况下怎么办 -如果是mysql未开启 ...

  6. SQL命令行操作

    命令行操作(mysql.exe)    0.登录  :       mysql -u root -p    1.显示数据库列表:    show databases;     2.选择数据库:     ...

  7. DOS命令行操作MySQL常用命令

    平时用可视化界面用惯了,如果紧急排查问题,没有安装可视化工具的话,只能通过命令来看了. 以备不时之需,我们要熟悉一下命令行操作MySQL. 打开DOS命令窗口:WIN + R 输入cmd,回车 然后输 ...

  8. MySQL 事务配置命令行操作和持久化

    MySQL 事务配置命令行操作和持久化 参考 MySQL 官方参考手册 提供 5.5 5.6 5.7 8.0 版本的参考手册 https://dev.mysql.com/doc/refman/5.5/ ...

  9. 命令行操作svn和git和git

    前几天在写代码的时候电脑突然坏掉,老大交代的任务没完成,非常痛恨自己用svn或者git保存代码,相信很多程序员遇到过,硬盘坏掉,存在硬盘中的代码丢失,无法找回的问题,svn和git可谓程序员界的福音, ...

随机推荐

  1. 【Android】6.3 ProgressDialog

    分类:C#.Android.VS2015: 创建日期:2016-02-08 一.简介 进度条对话框(ProgressDialog)常用于不能在短时间内快速完成的操作,显示进度条的目的是为了让用户明白程 ...

  2. app 图标规格参考表

    转自:http://www.cocoachina.com/appstore/top/2012/1105/5031.html 像我一样记不住iOS应用图标像素尺寸的开发者不在少数,我经常需要查询不同设备 ...

  3. Python 訪问Google+ (http)

    CODE: #!/usr/bin/python # -*- coding: utf-8 -*- ''' Created on 2014-8-28 @author: guaguastd @name: l ...

  4. compiled inline cache

    http://cr.openjdk.java.net/~jrose/pres/200910-VMIL.pdf https://wiki.openjdk.java.net/display/HotSpot ...

  5. Oracle PLSQL Demo - 05.WHILE循环[WHILE LOOP]

    declare v_sal ; begin ) loop v_sal :; dbms_output.put_line(v_sal); end loop; end;

  6. tortoisegit 7步 学会git分支

    tortoisegit 7步 学会git分支 做自己的产品,分支还是很重要的.例如,我发布了一个app,但是有bug,又想做新功能,怎么办呢?如果只在一个git上开发的话,bug会越来越多,原来bug ...

  7. 在IIS6上部署WebService

    在IIS6上部署WebService 2016-12-07 目录: 1 创建web service项目2 部署WebService3 浏览页面 1 创建web service项目 返回 用Visual ...

  8. jsoup解析网页出现转义符问题

    https://www.oschina.net/question/996055_136438 *************************************** 我要解析这个网页  htt ...

  9. 带limit的hivesql排序

    带limit的hivesql排序   select requestdomain,count(1) as cnt from ods_cndns_real_log where dt = 20160707 ...

  10. js中作用域和闭包

    作用域链实例   (1) function example() { var age = 23; alert(age) } var age = 25; example(); alert(age); // ...