mongo笔记

# 登录mongo数据库
mongo
mongo -u 用户名 -p 密码 --authenticationDatabase 数据库名
# 数据库简单操作
show dbs
use 数据库名
show tables
db.数据库名.find()

db.createCollection("集合名")
db.集合名.drop()

# 导出导入操作
mongoexport -d 数据库名 -c 集合名 -o /db/SiteSettings.json --type json
mongoimport -d 数据库名 -c 集合名 --file /db/test.json --type json
# 带用户的
mongoexport -u 用户名 -p 密码 --authenticationDatabase 数据库名 -d 数据库名 -c 集合名 -o /db/test.json --type json
mongoimport -u 用户名 -p 密码 --authenticationDatabase 数据库名 -d 数据库名 -c 集合名 --file /db/test.json --type json

mongoexport -u 用户名-p 密码 --authenticationDatabase 数据库名 -d 数据库名 -c 集合名 -o /ApiDiscoveryUrls.csv --type csv --fields domainKey,method,uri

mongo导入导出

posted @   左岸丶  阅读(11)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
点击右上角即可分享
微信分享提示