db.users.find({"CardCode":{"$in":['FZ00103','FZ00068']}})? ? ? ? ? ? ? ? ? ? ? ? ? --in
db.users.find({"CardCode":{"$nin":['FZ00103','FZ00068']}}) ? ? ? ? ? ? ? ? ? ? --not in
db.users.find({},{'CardCode':1,'CardName':1}) - ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? -只返回列CardCode,CardName
db.users.find({'CardCode':'FZ00078'}) ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? --返回CardCode=FZ00078
db.users.find({'CardCode':'FZ00078'},{'CardCode':1,'CardName':1}) ? ? ? ?--返回CardCode=FZ00078,只返回CardCode,CardName兩列
db.getCollection('xxxx').count() ? ? ? ? ? ? ? ? ? ? ? ? ?– 返回集合中有多少條記錄
db.getCollection('xxxx').remove({}) ? ? ? ? ? ? ? ? ? ?--刪除集合间驮,不會刪除索引
db.getCollection('xxxx').drop({}) ? ? ? ? ? ? ? ? ? ? ? ?–刪除整個集合包含索引逛薇,然后重新創(chuàng)建集合和索引
db.getCollection('xxxx').sort({'field':-1}) ? ? ? ? ? ? ?-- 排序宋距,-1降序谷暮,1升序