Cheeel666

Untitled

May 16th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function isEmpty(val){
  2. return (val === undefined || val == null || val.length <= 0) ? true : false;
  3. }
  4.  
  5.  
  6. db.quest_inn.find({"contracttypeid":5}).forEach(function(u) {
  7. db.emp_inn.find({"userid":u.userid}).forEach(e => {
  8. if(isEmpty(e.inn) && !isEmpty(u.inn)) {
  9. db.emp_inn.updateOne({"userid":u.userid}, {$set:{"inn":u.inn}});
  10. };
  11. });
  12. });
  13.  
  14. db.quest_inn.find()
  15.  
Advertisement
Add Comment
Please, Sign In to add comment