In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.

Executables

The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.

  MySQL/Oracle MongoDB
Database Server mysqld/oracle mongod
Database Client mysql/sqlplus mongo

Terminology and Concepts

The following table presents the various SQL terminology and concepts and the corresponding MongoDB terminology and concepts.

SQL Terms/Concepts MongoDB Terms/Concepts
database database
table collection
row document or BSON document
column field
index index
table joins embedded documents and linking

primary key

Specify any unique column or column combination as primary key.

primary key

In MongoDB, the primary key is automatically set to the _id field.

aggregation (e.g. group by)

aggregation framework

See the SQL to Aggregation Framework Mapping Chart.

Examples

The following table presents the various SQL statements and the corresponding MongoDB statements. The examples in the table assume the following conditions:

  • The SQL examples assume a table named users.

  • The MongoDB examples assume a collection named users that contain documents of the following prototype:

    1. {
    2. _id: ObjectID("509a8fb2f3f4948bd2f983a0"),
    3. user_id: "abc123",
    4. age: 55,
    5. status: 'A'
    6. }

Create and Alter

The following table presents the various SQL statements related to table-level actions and the corresponding MongoDB statements.

SQL Schema Statements MongoDB Schema Statements Reference
  1. CREATE TABLE users (
  2. id MEDIUMINT NOT NULL
  3. AUTO_INCREMENT,
  4. user_id Varchar(30),
  5. age Number,
  6. status char(1),
  7. PRIMARY KEY (id)
  8. )

Implicitly created on first insert operation. The primary key _id is automatically added if _id field is not specified.

  1. db.users.insert( {
  2. user_id: "abc123",
  3. age: 55,
  4. status: "A"
  5. } )

However, you can also explicitly create a collection:

  1. db.createCollection("users")
See insert() and createCollection() for more information.
  1. ALTER TABLE users
  2. ADD join_date DATETIME
Collections do not describe or enforce the structure of the constituent documents. See the Schema Design wiki page for more information. See update() and $set for more information on changing the structure of documents in a collection.
  1. ALTER TABLE users
  2. DROP COLUMN join_date
Collections do not describe or enforce the structure of the constituent documents. See the Schema Design wiki page for more information. See update() and $set for more information on changing the structure of documents in a collection.
  1. CREATE INDEX idx_user_id_asc
  2. ON users(user_id)
  1. db.users.ensureIndex( { user_id: 1 } )
See ensureIndex() and indexes for more information.
  1. CREATE INDEX
  2. idx_user_id_asc_age_desc
  3. ON users(user_id, age DESC)
  1. db.users.ensureIndex( { user_id: 1, age: -1 } )
See ensureIndex() and indexes for more information.
  1. DROP TABLE users
  1. db.users.drop()
See drop() for more information.

Insert

The following table presents the various SQL statements related to inserting records into tables and the corresponding MongoDB statements.

SQL INSERT Statements MongoDB insert() Statements Reference
  1. INSERT INTO users(user_id,
  2. age,
  3. status)
  4. VALUES ("bcd001",
  5. 45,
  6. "A")
  1. db.users.insert( {
  2. user_id: "bcd001",
  3. age: 45,
  4. status: "A"
  5. } )
See insert() for more information.

Select

The following table presents the various SQL statements related to reading records from tables and the corresponding MongoDB statements.

SQL SELECT Statements MongoDB find() Statements Reference
  1. SELECT *
  2. FROM users
  1. db.users.find()
See find() for more information.
  1. SELECT id, user_id, status
  2. FROM users
  1. db.users.find(
  2. { },
  3. { user_id: 1, status: 1 }
  4. )
See find() for more information.
  1. SELECT user_id, status
  2. FROM users
  1. db.users.find(
  2. { },
  3. { user_id: 1, status: 1, _id: 0 }
  4. )
See find() for more information.
  1. SELECT *
  2. FROM users
  3. WHERE status = "A"
  1. db.users.find(
  2. { status: "A" }
  3. )
See find() for more information.
  1. SELECT user_id, status
  2. FROM users
  3. WHERE status = "A"
  1. db.users.find(
  2. { status: "A" },
  3. { user_id: 1, status: 1, _id: 0 }
  4. )
See find() for more information.
  1. SELECT *
  2. FROM users
  3. WHERE status != "A"
  1. db.users.find(
  2. { status: { $ne: "A" } }
  3. )
See find() and $ne for more information.
  1. SELECT *
  2. FROM users
  3. WHERE status = "A"
  4. AND age = 50
  1. db.users.find(
  2. { status: "A",
  3. age: 50 }
  4. )
See find() and $and for more information.
  1. SELECT *
  2. FROM users
  3. WHERE status = "A"
  4. OR age = 50
  1. db.users.find(
  2. { $or: [ { status: "A" } ,
  3. { age: 50 } ] }
  4. )
See find() and $or for more information.
  1. SELECT *
  2. FROM users
  3. WHERE age > 25
  1. db.users.find(
  2. { age: { $gt: 25 } }
  3. )
See find() and $gt for more information.
  1. SELECT *
  2. FROM users
  3. WHERE age < 25
  1. db.users.find(
  2. { age: { $lt: 25 } }
  3. )
See find() and $lt for more information.
  1. SELECT *
  2. FROM users
  3. WHERE age > 25
  4. AND age <= 50
  1. db.users.find(
  2. { age: { $gt: 25, $lte: 50 } }
  3. )
See find(), $gt, and $lte for more information.
  1. SELECT *
  2. FROM users
  3. WHERE user_id like "%bc%"
  1. db.users.find(
  2. { user_id: /bc/ }
  3. )
See find() and $regex for more information.
  1. SELECT *
  2. FROM users
  3. WHERE user_id like "bc%"
  1. db.users.find(
  2. { user_id: /^bc/ }
  3. )
See find() and $regex for more information.
  1. SELECT *
  2. FROM users
  3. WHERE status = "A"
  4. ORDER BY user_id ASC
  1. db.users.find( { status: "A" } ).sort( { user_id: 1 } )
See find() and sort() for more information.
  1. SELECT *
  2. FROM users
  3. WHERE status = "A"
  4. ORDER BY user_id DESC
  1. db.users.find( { status: "A" } ).sort( { user_id: -1 } )
See find() and sort() for more information.
  1. SELECT COUNT(*)
  2. FROM users
  1. db.users.count()

or

  1. db.users.find().count()
See find() and count() for more information.
  1. SELECT COUNT(user_id)
  2. FROM users
  1. db.users.count( { user_id: { $exists: true } } )

or

  1. db.users.find( { user_id: { $exists: true } } ).count()
See find(), count(), and $exists for more information.
  1. SELECT COUNT(*)
  2. FROM users
  3. WHERE age > 30
  1. db.users.count( { age: { $gt: 30 } } )

or

  1. db.users.find( { age: { $gt: 30 } } ).count()
See find(), count(), and $gt for more information.
  1. SELECT DISTINCT(status)
  2. FROM users
  1. db.users.distinct( "status" )
See find() and distinct() for more information.
  1. SELECT *
  2. FROM users
  3. LIMIT 1
  1. db.users.findOne()

or

  1. db.users.find().limit(1)
See find(), findOne(), and limit() for more information.
  1. SELECT *
  2. FROM users
  3. LIMIT 5
  4. SKIP 10
  1. db.users.find().limit(5).skip(10)
See find(), limit(), and skip() for more information.
  1. EXPLAIN SELECT *
  2. FROM users
  3. WHERE status = "A"
  1. db.users.find( { status: "A" } ).explain()
See find() and explain() for more information.

Update Records

The following table presents the various SQL statements related to updating existing records in tables and the corresponding MongoDB statements.

SQL Update Statements MongoDB update() Statements Reference
  1. UPDATE users
  2. SET status = "C"
  3. WHERE age > 25
  1. db.users.update(
  2. { age: { $gt: 25 } },
  3. { $set: { status: "C" } },
  4. { multi: true }
  5. )
See update(), $gt, and $set for more information.
  1. UPDATE users
  2. SET age = age + 3
  3. WHERE status = "A"
  1. db.users.update(
  2. { status: "A" } ,
  3. { $inc: { age: 3 } },
  4. { multi: true }
  5. )
See update(), $inc, and $set for more information.

Delete Records

The following table presents the various SQL statements related to deleting records from tables and the corresponding MongoDB statements.

SQL Delete Statements MongoDB remove() Statements Reference
  1. DELETE FROM users
  2. WHERE status = "D"
  1. db.users.remove( { status: "D" } )
See remove() for more information.
  1. DELETE FROM users
  1. db.users.remove( )
See remove() for more information.

Mongodb 与 SQL 语句对照表的更多相关文章

  1. mongodb与sql语句对照表

    inert into users value(3,5) db.users.insert({a:3,b:5})     select a,b from users db.users.find({}, { ...

  2. MongoDB对应SQL语句

    -------------------MongoDB对应SQL语句------------------- 1.Create and Alter     1.     sql:         crea ...

  3. mongodb 跟踪SQL语句及慢查询收集

    有个需求:跟踪mongodb的SQL语句及慢查询收集 第一步:通过mongodb自带函数可以查看在一段时间内DML语句的运行次数. 在bin目录下面运行  ./mongostat -port 端口号  ...

  4. Mongodb 与sql 语句对照

    此处用mysql中的sql语句做例子,C# 驱动用的是samus,也就是上文中介绍的第一种. 引入项目MongoDB.dll //创建Mongo连接 var mongo = new Mongo(&qu ...

  5. mongodb与sql语句对比

    左边是mongodb查询语句,右边是sql语句.对照着用,挺方便. db.users.find() select * from users db.users.find({"age" ...

  6. mongodb的sql日志

    在Yii2中是没有打印出mongodb的sql语句,故借用下log来查看吧. 在网上有说可以使用$model->find()->createCommand()->getRawSql( ...

  7. Mongodb操作之查询(循序渐进对比SQL语句)

    工具推荐:Robomongo,可自行百度寻找下载源,个人比较推荐这个工具,相比较mongoVUE则更加灵活. 集合简单查询方法 mongodb语法:db.collection.find()  //co ...

  8. Mongodb操作之查询(循序渐进对比SQL语句)(转http://www.tuicool.com/articles/UzQj6rF)

    工具推荐:Robomongo,可自行百度寻找下载源,个人比较推荐这个工具,相比较mongoVUE则更加灵活. 集合简单查询方法 mongodb语法:db.collection.find()  //co ...

  9. mongodb查询语句与sql语句对比

    左边是mongodb查询语句,右边是sql语句.对照着用,挺方便. db.users.find() select * from users db.users.find({"age" ...

随机推荐

  1. python,遍历文件的方法

    在做验证码识别时,识别时需要和库里的图片对比,找到最接近的那个图片,然后就行到了用与图片一致的字符命名,获取文件的名称,去将图片的名称读出来作为验证码.以下是我通过网上的资料总结的三种文件遍历的方式, ...

  2. [leetcode]415. Add Strings字符串相加

    Given two non-negative integers num1 and num2 represented as string, return the sum of num1 and num2 ...

  3. [leetcode]347. Top K Frequent Elements 最高频的前K个元素

    Given a non-empty array of integers, return the k most frequent elements. For example,Given [1,1,1,2 ...

  4. 源码安装php时出现configure: error: xml2-config not found. Please check your libxml2 installation

    1.检查是否安装了libxml 包 > rpm -qa|grep libxml2 2.如果没有则安装 > yum install libxml2 > yum install libx ...

  5. .net core web api swagger 配置笔记

    参考网址: --配置步骤见如下链接https://docs.microsoft.com/zh-cn/aspnet/core/tutorials/web-api-help-pages-using-swa ...

  6. Stripies

    /* Our chemical biologists have invented a new very useful form of life called stripies (in fact, th ...

  7. script标签的type="test/html"时

    们可以在<script>片断中定义一个被JS调用的代码,但代码又不在页面上显示,这时,我们可以使用下面的方法: 1 <script id="commentTemplate& ...

  8. src/lxml/includes/etree_defs.h:14:31: 致命错误:libxml/xmlversion.h:没有那个文件或目录

    fedora21平台下解决办法:yum install libxml-devel ubuntu下可以使用 apt-get intalll xxxx 如果仍然出现,可以尝试安装这两个包libxslt-d ...

  9. php用get方式传json数据 变成null了

    $data = I('param.data'); $data=stripslashes(html_entity_decode($data));//$data为传过去的json字符串

  10. kerberos认证的步骤,学习笔记

    .KDC,uname,upwd -x算法=>authticator 暗号 .KDC ->uname,pwd->x1算法->解密authticator 确认客户端身份->生 ...