以下是针对“MongoDB 入门指南”的完整攻略,包含两条示例说明。
MongoDB 入门指南
什么是 MongoDB
MongoDB是一种文档型的数据库,它使用Json-like的BSON格式,并支持动态Schema和Flexible Query。MongoDB可以快速地存储和查询大量非结构化、半结构化和结构化数据。MongoDB是一个非常流行的开源数据库,许多公司和互联网应用都在使用它。
安装 MongoDB
在Linux上安装 MongoDB
在Ubuntu上,可以通过APT安装MongoDB:
$ sudo apt-get install -y mongodb
在CentOS上,可以通过Yum安装MongoDB:
$ sudo yum install -y mongodb
安装完成后,可以通过下面的命令启动 MongoDB:
$ sudo systemctl start mongodb
在Windows上安装 MongoDB
可以在官网下载MongoDB的安装程序,然后按照提示进行安装。安装完成后,可以通过以下命令启动MongoDB:
C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe
开始使用 MongoDB
连接到 MongoDB
在命令行中输入以下命令可以连接到MongoDB:
$ mongo
创建数据库和集合
可以使用use
命令来创建数据库:
$ use mydatabase
使用db.createCollection
创建集合:
$ db.createCollection("mycollection")
插入数据
使用insert
命令插入数据:
$ db.mycollection.insert({
"name": "John Doe",
"age": 25,
"email": "johndoe@example.com"
})
查询数据
使用find
命令查询数据:
$ db.mycollection.find()
更新数据
使用update
命令更新数据:
$ db.mycollection.update(
{ "name": "John Doe" },
{ $set: { "age": 26 } }
)
删除数据
使用remove
命令删除数据:
$ db.mycollection.remove({ "name": "John Doe" })
示例说明
示例1:使用 Python 连接到 MongoDB
可以使用Python的pymongo
模块来连接到MongoDB。
import pymongo
# 连接到MongoDB
client = pymongo.MongoClient("mongodb://localhost:27017/")
# 创建数据库
mydb = client["mydatabase"]
# 创建集合
mycollection = mydb["customers"]
# 插入数据
mydict = { "name": "John Doe", "address": "Highway 37" }
mycollection.insert_one(mydict)
# 查询数据
for x in mycollection.find():
print(x)
# 更新数据
myquery = { "address": "Highway 37" }
newvalues = { "$set": { "address": "Park Lane 38" } }
mycollection.update_one(myquery, newvalues)
# 删除数据
myquery = { "address": "Park Lane 38" }
mycollection.delete_one(myquery)
示例2:使用 Node.js 连接到 MongoDB
可以使用Node.js的mongodb
模块来连接到MongoDB。
const MongoClient = require('mongodb').MongoClient;
// 连接到MongoDB
const url = 'mongodb://localhost:27017';
const client = new MongoClient(url, { useUnifiedTopology: true });
// 创建数据库和集合
client.connect((err) => {
if (err) throw err;
const db = client.db('mydatabase');
db.createCollection('customers', (err, res) => {
if (err) throw err;
console.log('Collection created!');
client.close();
});
});
// 插入数据
client.connect((err) => {
if (err) throw err;
const db = client.db('mydatabase');
const collection = db.collection('customers');
const myobj = { name: 'John Doe', address: 'Highway 37' };
collection.insertOne(myobj, (err, result) => {
if (err) throw err;
console.log('1 document inserted');
client.close();
});
});
// 查询数据
client.connect((err) => {
if (err) throw err;
const db = client.db('mydatabase');
const collection = db.collection('customers');
collection.find({}).toArray((err, result) => {
if (err) throw err;
console.log(result);
client.close();
});
});
// 更新数据
client.connect((err) => {
if (err) throw err;
const db = client.db('mydatabase');
const collection = db.collection('customers');
const myquery = { address: 'Highway 37' };
const newvalues = { $set: { address: 'Park Lane 38' } };
collection.updateOne(myquery, newvalues, (err, result) => {
if (err) throw err;
console.log('1 document updated');
client.close();
});
});
// 删除数据
client.connect((err) => {
if (err) throw err;
const db = client.db('mydatabase');
const collection = db.collection('customers');
const myquery = { address: 'Park Lane 38' };
collection.deleteOne(myquery, (err, result) => {
if (err) throw err;
console.log('1 document deleted');
client.close();
});
});
这里仅提供了两个示例,实际使用中可以根据不同的语言和开发环境使用相应的MongoDB客户端库来连接和操作MongoDB。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:MongoDB 入门指南 - Python技术站