MySQL:UPDATE user SET
= 36 WHERE
= ’starlee’Mongo:db.user.update({‘name’ : ’starlee’}, {$set : {‘age’ : 36}})
mysql可以更新多条age=36的记录,但是mongo每次只能更新一条。