博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MongoDB语法与现有关系型数据库SQL语法比较
阅读量:6151 次
发布时间:2019-06-21

本文共 1682 字,大约阅读时间需要 5 分钟。

MongoDB语法                                  MySql语法db.test.find({
'name':'foobar'})<==> select * from test where name='foobar'db.test.find() <==> select *from testdb.test.find({
'ID':10}).count()<==> select count(*) from test where ID=10db.test.find().skip(10).limit(20)<==> select * from test limit 10,20db.test.find({
'ID':{$in:[25,35,45]}})<==> select * from test where ID in (25,35,45)db.test.find().sort({
'ID':-1}) <==> select * from test order by IDdescdb.test.distinct('name',{
'ID':{$lt:20}}) <==> select distinct(name) from testwhere ID<20db.test.group({
key:{
'name':true},cond:{
'name':'foo'},reduce:function(obj,prev){prev.msum+=obj.marks;},initial:{msum:0}}) <==> select name,sum(marks) from testgroup by name db.test.find('this.ID<20',{name:1}) <==> select name from test where ID < 20db.test.insert({
'name':'foobar','age':25})<==>insert into test ('name','age') values('foobar',25)db.test.remove({}) <==> delete * from testdb.test.remove({
'age':20})   <==> delete test where age=20db.test.remove({
'age':{$lt:20}})     <==> delete test where age<20db.test.remove({
'age':{$lte:20}})     <==> delete test where age<=20db.test.remove({
'age':{$gt:20}})      <==> delete test where age>20db.test.remove({
'age':{$gte:20}})     <==> delete test where age>=20db.test.remove({
'age':{$ne:20}})      <==> delete test where age!=20 db.test.update({
'name':'foobar'},{$set:{
'age':36}})<==> update test set age=36 where name='foobar'db.test.update({
'name':'foobar'},{$inc:{
'age':3}})<==> update test set age=age+3 where name = ‘foobar’

 

转载地址:http://crgya.baihongyu.com/

你可能感兴趣的文章
整理看到的好的文档
查看>>
Linux磁盘管理和文件系统管理
查看>>
linux运维人员的成功面试总结案例分享
查看>>
Windows DHCP Server基于MAC地址过滤客户端请求实现IP地址的分配
查看>>
命令查询每个文件文件数
查看>>
《跟阿铭学Linux》第8章 文档的压缩与打包:课后习题与答案
查看>>
RAC表决磁盘管理和维护
查看>>
Apache通过mod_php5支持PHP
查看>>
发布一个TCP 吞吐性能测试小工具
查看>>
java学习:jdbc连接示例
查看>>
PHP执行批量mysql语句
查看>>
Extjs4.1.x 框架搭建 采用Application动态按需加载MVC各模块
查看>>
Silverlight 如何手动打包xap
查看>>
建筑电气暖通给排水协作流程
查看>>
JavaScript面向对象编程深入分析(2)
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>
使用native 查询时,对特殊字符的处理。
查看>>