设为首页 收藏本站
查看: 377|回复: 0

[经验分享] SQL to MongoDB

[复制链接]

尚未签到

发表于 2015-7-7 12:34:07 | 显示全部楼层 |阅读模式
  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/OracleMongoDB



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/ConceptsMongoDB 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:





    {
    _id: ObjectID("509a8fb2f3f4948bd2f983a0"),
    user_id: "abc123",
    age: 55,
    status: 'A'
    }



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

SQL Schema StatementsMongoDB Schema StatementsReference








CREATE TABLE users (
id MEDIUMINT NOT NULL
AUTO_INCREMENT,
user_id Varchar(30),
age Number,
status char(1),
PRIMARY KEY (id)
)



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





db.users.insert( {
    user_id: "abc123",
    age: 55,
    status: "A"
} )

  However, you can also explicitly create a collection:





db.createCollection("users")


See insert() and createCollection() for more information.







ALTER TABLE users
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.







ALTER TABLE users
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.







CREATE INDEX idx_user_id_asc
ON users(user_id)







db.users.ensureIndex( { user_id: 1 } )


See ensureIndex() and indexes for more information.







CREATE INDEX
idx_user_id_asc_age_desc
ON users(user_id, age DESC)







db.users.ensureIndex( { user_id: 1, age: -1 } )


See ensureIndex() and indexes for more information.







DROP TABLE users







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 StatementsMongoDB insert() StatementsReference








INSERT INTO users(user_id,
age,
status)
VALUES ("bcd001",
45,
"A")







db.users.insert( {
       user_id: "bcd001",
       age: 45,
       status: "A"
} )


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 StatementsMongoDB find() StatementsReference








SELECT *
FROM users







db.users.find()


See find() for more information.







SELECT id, user_id, status
FROM users







db.users.find(
    { },
    { user_id: 1, status: 1 }
)


See find() for more information.







SELECT user_id, status
FROM users







db.users.find(
    { },
    { user_id: 1, status: 1, _id: 0 }
)


See find() for more information.







SELECT *
FROM users
WHERE status = "A"







db.users.find(
    { status: "A" }
)


See find() for more information.







SELECT user_id, status
FROM users
WHERE status = "A"







db.users.find(
    { status: "A" },
    { user_id: 1, status: 1, _id: 0 }
)


See find() for more information.







SELECT *
FROM users
WHERE status != "A"







db.users.find(
    { status: { $ne: "A" } }
)


See find() and $ne for more information.







SELECT *
FROM users
WHERE status = "A"
AND age = 50







db.users.find(
    { status: "A",
      age: 50 }
)


See find() and $and for more information.







SELECT *
FROM users
WHERE status = "A"
OR age = 50







db.users.find(
    { $or: [ { status: "A" } ,
             { age: 50 } ] }
)


See find() and $or for more information.







SELECT *
FROM users
WHERE age > 25







db.users.find(
    { age: { $gt: 25 } }
)


See find() and $gt for more information.







SELECT *
FROM users
WHERE age < 25







db.users.find(
   { age: { $lt: 25 } }
)


See find() and $lt for more information.







SELECT *
FROM users
WHERE age > 25
AND   age  30







db.users.count( { age: { $gt: 30 } } )

  or





db.users.find( { age: { $gt: 30 } } ).count()


See find(), count(), and $gt for more information.







SELECT DISTINCT(status)
FROM users







db.users.distinct( "status" )


See find() and distinct() for more information.







SELECT *
FROM users
LIMIT 1







db.users.findOne()

  or





db.users.find().limit(1)


See find(), findOne(), and limit() for more information.







SELECT *
FROM users
LIMIT 5
SKIP 10







db.users.find().limit(5).skip(10)


See find(), limit(), and skip() for more information.







EXPLAIN SELECT *
FROM users
WHERE status = "A"







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 StatementsMongoDB update() StatementsReference








UPDATE users
SET status = "C"
WHERE age > 25







db.users.update(
   { age: { $gt: 25 } },
   { $set: { status: "C" } },
   { multi: true }
)


See update(), $gt, and $set for more information.







UPDATE users
SET age = age + 3
WHERE status = "A"







db.users.update(
   { status: "A" } ,
   { $inc: { age: 3 } },
   { multi: true }
)


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 StatementsMongoDB remove() StatementsReference








DELETE FROM users
WHERE status = "D"







db.users.remove( { status: "D" } )


See remove() for more information.







DELETE FROM users







db.users.remove( )


See remove() for more information.

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-84122-1-1.html 上篇帖子: solr mongoDB 对比 下篇帖子: Mongodb-初步了解
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表