当前位置:网站首页>MongoDB数据库入门的常用命令
MongoDB数据库入门的常用命令
2022-07-03 13:42:00 【稻田里展望者】
选择切换数据库:use articledb
插入数据:db.comment.insert({bson数据})
查询所有数据:db.comment.find();
条件查询数据:db.comment.find({条件})
查询符合条件的第一条记录:db.comment.findOne({条件})
查询符合条件的前几条记录:db.comment.find({条件}).limit(条数)
查询符合条件的跳过的记录:db.comment.find({条件}).skip(条数)
修改数据:db.comment.update({条件},{修改后的数据})
db.comment.update({条件},{$set:{要修改部分的字段:数据})
修改数据并自增某字段值:db.comment.update({条件},{$inc:{自增的字段:步进值}})
删除数据:db.comment.remove({条件})
统计查询:db.comment.count({条件})
模糊查询:db.comment.find({字段名:/正则表达式/})
条件比较运算:db.comment.find({字段名:{$gt:值}})
包含查询:db.comment.find({字段名:{$in:[值1,值2]}})
db.comment.find({字段名:{$nin:[值1,值2]}})
条件连接查询:db.comment.find({$and:[{条件1},{条件2}]})
db.comment.find({$or:[{条件1},{条件2}]})
边栏推荐
- JS general form submission 1-onsubmit
- Implementation of Muduo asynchronous logging
- Invalid Z-index problem
- 金属有机骨架MOFs装载非甾体类抗炎药物|ZIF-8包裹普鲁士蓝负载槲皮素(制备方法)
- jvm-对象生命周期
- [clean up the extraordinary image of Disk C]
- QT learning 17 dialog box and its types
- Common mixins
- 7-11 calculation of residential water charges by sections
- TS code automatically generates JS
猜你喜欢
QT learning 23 layout manager (II)
JS Part III
核酸修饰的金属有机框架药物载体|PCN-223金属有机骨架包载Ad金刚烷|ZIF-8包裹阿霉素(DOX)
[email protected](Fe)|甘草次酸修饰金属有机框架材料UiO-66-NH2(简称UiO-66-NH2-GA)"/>
MIL-100( Fe) 包裹小分子阿司匹林形成[email protected](Fe)|甘草次酸修饰金属有机框架材料UiO-66-NH2(简称UiO-66-NH2-GA)
Mysql:insert date:sql error [1292] [22001]: data truncation: incorrect date value:
泰凌冲刺科创板:拟募资13亿 国家大基金与小米长江是股东
GRPC的四种数据流以及案例
Leetcode(4)——寻找两个正序数组的中位数
牛客网:过河卒
Polestar美股上市:5.5万台交付如何支持得起超200亿美元估值
随机推荐
Cross linked cyclodextrin metal organic framework loaded methotrexate slow-release particles | metal organic porous material uio-66 loaded with flavonoid glycosides | Qiyue
Polestar美股上市:5.5万台交付如何支持得起超200亿美元估值
Exercise 7-6 count capital consonants
Redis:字符串类型数据的操作命令
金属有机骨架材料ZIF-8包载姜黄素([email protected]纳米颗粒)|纳米金属有机框架搭载雷帕霉素|科研试剂
Exercise 9-3 plane vector addition
[combinatorics] permutation and combination (two counting principles, examples of set permutation | examples of set permutation and circle permutation)
交联环糊精金属有机骨架负载甲氨蝶呤缓释微粒|金属-有机多孔材料UiO-66负载黄酮苷类药物|齐岳
Qt学习24 布局管理器(三)
Toast UI editor (editor allows you to edit your markup document using text or WYSIWYG, with syntax highlighting, scrolling synchronization, real-time preview and chart functions.)
Rasp implementation of PHP
Exercise 9-1 time conversion
常见问题之PHP——ldap_add(): Add: Undefined attribute type in
Configure stylelint
Uniapp tips - set background music
Uniapp tips - scrolling components
Scroll detection, so that the content in the lower right corner is not displayed at the top of the page, but is displayed as the mouse slides
Webpage connection database ~ simple implementation of addition, deletion, modification and query complete code
Redis: redis data structure and key operation commands
QT learning 21 standard dialog box in QT (Part 2)