MongoDB是一个开源、面向文档、基于NoSQL的数据库程序,使用C++语言编写。它支持丰富的查询功能和可扩展性架构,且具有高可用性、高性能和易扩展的特点。MongoDB的数据结构是文档型的,不使用传统的表格结构,而使用BSON(二进制编码的JSON格式)进行存储。
MongoDB在以下场景中有着广泛应用:
若MongoDB已安装在本地,可以使用以下命令启动:
mongod
使用以下命令连接到MongoDB数据库:
mongo
使用以下命令创建或查看数据库:
use example // 创建名为example的数据库
show dbs // 列举所有数据库
使用以下命令创建或查看集合:
db.createCollection("users") // 创建名为users的集合
show collections // 列举数据库中的所有集合
使用以下命令插入数据:
db.users.insertOne({'name': 'John Doe', 'age': 25, 'email': 'johndoe@example.com'}) // 插入一条记录
db.users.insertMany([{'name': 'Jane Doe', 'age': 24, 'email': 'janedoe@example.com'}, {'name': 'Bob Smith', 'age': 30, 'email': 'bobsmith@example.com'}]) // 插入多条记录
使用以下命令查询数据:
db.users.find() // 查询users集合中的所有记录
db.users.findOne({'name': 'John Doe'}) // 查询users集合中name为John Doe的记录
使用以下命令更新数据:
db.users.updateOne({'name': 'John Doe'}, {$set: {'age': 26}}) // 更新users集合中name为John Doe的记录的age字段为26
db.users.updateMany({'age': 30}, {$set: {'age': 31}}) // 更新users集合中age为30的记录的age字段为31
使用以下命令删除数据:
db.users.deleteOne({'name': 'John Doe'}) // 删除users集合中name为John Doe的记录
db.users.deleteMany({'age': 30}) // 删除users集合中age为30的所有记录
use products // 创建名为products的数据库
db.createCollection("books") // 创建名为books的集合
db.books.insertMany([{'name': 'The Great Gatsby', 'author': 'F. Scott Fitzgerald'}, {'name': 'To Kill a Mockingbird', 'author': 'Harper Lee'}]) // 插入两条记录
db.books.updateOne({'name': 'The Great Gatsby'}, {$set: {'author': 'Jane Doe'}}) // 更新名为The Great Gatsby的记录的作者字段为Jane Doe
db.books.find({'author': 'Harper Lee'}) // 查询作为Harper Lee的记录
db.books.deleteOne({'author': 'Harper Lee'}) // 删除作为Harper Lee的记录
本文简要介绍了MongoDB的基本知识,包括MongoDB的定义、应用场景以及基本操作。同时提供了两个例子以帮助读者更好地掌握MongoDB的实际应用,希望对想要了解MongoDB的读者有所帮助。
本文链接:http://task.lmcjl.com/news/18627.html