-
Notifications
You must be signed in to change notification settings - Fork 6
MongoDB 对指定字段执行 trim 方法 #169
Copy link
Copy link
Closed
Labels
Description
解决过程
Google 关键词:mongodb remove space in documents field value。
第一个搜索结果 Removing white spaces (leading and trailing) from string value 就给出了当前在用的 MongoDB 4.2 可以用的方法:
db.collection.update(
{},
[{ $set: { category: { $trim: { input: "$category" } } } }],
{ multi: true }
)Reactions are currently unavailable