添加一個字段. table 代表表名 , 添加字段 content,字符串類型悠汽。
db.table.update({}, {$set: {content:""}}, {multi: true})
如亡哄,給集合添加一個狀態(tài)字段
db.getCollection('contractApply').update({}, {$set: {'state':"已確認"}}, {multi: true});
刪除一個字段
db.table.update({},{$unset:{content:""}},false, true)