日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

MongoDB 语法和mysql语法对比学习

發布時間:2024/8/26 数据库 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 MongoDB 语法和mysql语法对比学习 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

? ? ?查詢test所有數據
? ??? ??db.test.find() //select * from test


? ??通過指定條件查詢
? ??? ??db.test.find({‘last_name': ‘Smith'});//select * from test?where last_name='Smith'?
? ??指定多條件查詢
? ??? ??db.test.find( { x : 3, y : “foo” } );//select * from test?where x=3 and y='foo'

? ??指定條件范圍查詢
? ??? ??db.test.find({j: {$ne: 3}, k: {$gt: 10} });//select * from test?where j!=3 and k>10


? ??查詢不包括某內容

? ??? ??db.test.find({}, {a:0});//查詢結果不顯示a列


? ??支持<, <=, >, >=查詢,需用符號替代分別為$lt,$lte,$gt,$gte
? ??? ??db.test.find({ “field” : { $gt: value } } );?
? ??? ??db.test.find({ “field” : { $lt: value } } );?
? ??? ??db.test.find({ “field” : { $gte: value } } );
? ??? ??db.test.find({ “field” : { $lte: value } } );


? ??也可對某一字段做范圍查詢
? ??? ??db.test.find({ “field” : { $gt: value1, $lt: value2 } } );


? ??不等于查詢用字符$ne
? ??? ??db.test.find( { x : { $ne : 3 } } );


? ??in查詢用字符$in
? ??? ??db.test.find( { “field” : { $in : array } } );
? ??? ??db.test.find({ age :{$in: [2,4,6]}});


? ??not in查詢用字符$nin
? ??? ??db.test.find({age:{$nin: [2,4,6]}});


? ??取模查詢用字符$mod
? ??? ??db.test.find( { age : { $mod : [ 10 , 1 ] } } )// where a % 10 == 1


? ??$all查詢
? ??? ??db.test.find( { age: { $all: [ 2, 3 ] } } );//指定a滿足數組中任意值時


? ??$size查詢
? ??? ??db.test.find( { age : { $size: 1 } } );//對對象的數量查詢,此查詢查詢a的子對象數目為1的記錄


? ??$exists查詢
? ??? ??db.test.find( { age : { $exists : true } } ); // 存在a對象的數據
? ??? ??db.test.find( { age : { $exists : false } } ); // 不存在a對象的數據


? ??$type查詢$type值為bsonhttp://bsonspec.org/數 據的類型值
? ??? ??db.test.find( { age : { $type : 2 } } ); // 匹配a為string類型數據
? ??? ??db.test.find( { age : { $type : 16 } } ); // 匹配a為int類型數據


? ??使用正則表達式匹配
? ??? ??db.test.find( { name : /acme.*corp/i } );//類似于SQL中like


? ??內嵌對象查詢
? ??? ??db.test.find( { “author.name” : “joe” } );


? ??1.3.3版本及更高版本包含$not查詢

? ??? ??db.test.find( { name : { $not : /acme.*corp/i } } );
? ??? ??db.test.find( { age : { $not : { $mod : [ 10 , 1 ] } } } );


? ??sort()排序
? ??? ??db.test.find().sort( { ts : -1 } );//1為升序2為降序


? ??limit()對限制查詢數據返回個數
? ??? ??db.test.find().limit(10)


? ??skip()跳過某些數據
? ??? ??db.test.find().skip(10)


? ??snapshot()快照保證沒有重復數據返回或對象丟失



? ??count()統計查詢對象個數
? ??? ??db.students.find({‘address.state' : ‘CA'}).count();//效率較高
? ??? ??db.students.find({‘address.state' : ‘CA'}).toArray().length;//效率很低


? ??group()對查詢結果分組和SQL中group by函數類似
? ??distinct()返回不重復值


mysql數據庫(database)表(table)記錄(record)
mongodb數據庫(database)集合(collection)文檔對象(document)


grant * privileges on *.* to insertdb.addUser()
db.auth()
新建用戶并權限
show databasesshow dbs顯示庫列表
show tablesshow collections顯示表列表
show slave statusrs.status查詢主從狀態
create table users(a int, b int)db.createCollection("mycoll", {capped:true,size:100000}))
另:可隱式創建表。
創建表
create index idxname on users(name)db.users.ensureIndex({name:1})創建索引
create index idxname on users(name,ts desc)db.users.ensureIndex({name:1,ts:-1})創建索引
insert into users (a,b) values (1, 1)db.users.insert({a:1, b:1})插入記錄
select * from usersdb.users.find()查詢表
select a, b from usersdb.users.find({},{a:1, b:1})查詢某列
select * from users where age=33db.users.find({age:33})條件查詢
select a, b from users where age=33db.users.find({age:33},{a:1, b:1})條件查詢
select * from users where age<33db.users.find({age:{$lt:33}})小于
select * from users where age>33 and age<=40db.users.find({age:{$gt:33,$lte:40}})大于 、小于
select * from users where a=1 and b='q'db.users.find({a:1,b:'q'})條件查詢
select * from users where a=1 or b=2db.users.find({$or:[{a:1},{b:2}]})條件查詢
select * from users limit 1db.users.findOne()條件查詢
select * from users where name like '%Joe%'db.users.find({name:/Joe/})模糊查詢
select * from users where name like 'Joe%'db.users.find({name:/^Joe/})模糊查詢
select count(1) from usersdb.users.count()獲取表記錄數
select count(1) from users where age >30db.users.find({age: {$gt: 30}}).count()獲取表記錄數
select distinct last_name from usersdb.users.distinct('last_name')去掉重復值
select * from users order by namedb.users.find().sort({name:-1})排序
select * from users order by name descdb.users.find().sort({name:-1})排序
explain select * from users where z=3db.users.find({z:3}).explain()獲取存儲路徑
update users set a=1 where b='q'db.users.update({b:'q'}, {$set:{a:1}},false,true)更新記錄
update users set a=a+2 where b='q'db.users.update({b:'q'}, {$inc:{a:2}},false,true)更新記錄
?db. users.remove()刪除所有的記錄
delete from users where z='abc'db.users.remove({z:'abc'})刪除記錄
drop database if exists test;use test db.dropDatabase()刪除數據庫
drop table if exists test;db.mytable.drop()刪除表/collection
?db.addUser('test', 'test')添加用戶 readOnly-->false
?db.addUser('test', 'test', true)添加用戶 readOnly-->true
?db.addUser("test","test222")更改密碼
?db.system.users.remove({user:"test"}) 或者db.removeUser('test')刪除用戶
?use admin超級用戶
?db.auth('test','test')用戶授權
?db.system.users.find()查看用戶列表
?show users查看所有用戶
?db.printCollectionStats()查看各collection的狀態
?db.printReplicationInfo()查看主從復制狀態
?show profile查看profiling
?db.copyDatabase('mail_addr','mail_addr_tmp')拷貝數據庫
?db.users.dataSize()查看collection數據的大小
?db. users.totalIndexSize()查詢索引的大小





與50位技術專家面對面20年技術見證,附贈技術全景圖

總結

以上是生活随笔為你收集整理的MongoDB 语法和mysql语法对比学习的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。