Du kan prøve opdatering med aggregeringspipeline startende fra MongoDB 4.2,
$map
at gentage sløjfe aflistIDs
matrix$concat
at samle0000
med elementværdi
db.collection.updateMany({},
[{
$set: {
listIDs: {
$map: {
input: "$listIDs",
in: { $concat: ["0000", "$$this"] }
}
}
}
}]
)