安装mongo数据库,在shell下输入
sudo apt-get install mongodb
如果需要在Python中使用mongo数据库,还需要额外安装Python封装库
pip install pymongo
检测安装是否成功,可以使用下面命令在本地启动MongoDB
mongod -dbpath .
在shell中输入mongo,就可以进入mongo数据库
查询数据库语句
> show databases; cache 0.0625GB local 0.03125GB
使用数据库语句
> use cache; switched to db cache
查询全部table语句
> show tables; system.indexes webpage
查询talbe中的内容
db.webpage.find();
查询某些列的语句
db.webpage.find({},{_id:0}) #0代表不显示,1代表显示
查询特定行的语句
db.webpage.find({ID:"XXX"})
时间: 2024-11-15 00:29:50