首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

learing mongo~ ( part 一)

2012-11-19 
learing mongo~( part 1)download it..unzip it..create the db directory..Run and connect to the serve

learing mongo~ ( part 1)
download it..
unzip it..
create the db directory..
Run and connect to the server..





1、创建一个聚集集合(table)
db.createCollection(“collName”, {size: 20, capped: 5, max: 100});

2、得到指定名称的聚集集合(table)
db.getCollection("account");

3、得到当前db的所有聚集集合
db.getCollectionNames();

4、显示当前db所有聚集索引的状态
db.printCollectionStats();

热点排行