如何更新mongodb集合

时间:2010-10-20 08:40:48

标签: python mongodb pymongo

我的收藏结构是:

col1 = {'class':'12', 'roll':[1, 2, 3, 4]}

现在,我想update收集col1

col1 = {'class':'12', 'roll':[1, 2, 3, 4, 5]}

我在这里添加了另一个卷号,如何在pymongo中更新此集合。

1 个答案:

答案 0 :(得分:3)

 db.col1.update( { class : 12}, { $push : { roll : 5 } } )