执行语句
db.getCollection("A表").updateMany(
{},
{ $rename: { "A": "A1"} }
)
或者
db.getCollection("A表").update(
, {multi: true}
作用:将A表中的A字段重命名为A1