MongoDB 给表添加删除字段


MongoDB 给表添加删除字段

  • 添加字段
1
db.xxx.update({id:1}, {$set: {content:""}})
  • 删除字段
1
db.xxx.update({id:1},{$unset:{content:""}})