I wanted to insert a new field to all the documents in my collection named 'students' where the age is >19..but I am getting an error.
I run the following command:-
my_db> db.students.updateMany({age:{$gt:19},{$set:{'marks':9}}})
and the error shown is:-
SyntaxError: Unexpected token (1:37) > 1 | db.students.updateMany({age:{$gt:19},{$set:{'marks':9}}})