[mongodb] 강좌4 BigData MongoDB(NoSQL) - upsert Flag db.collection.update( , , { upsert: true } ) upsert: true : 아이디가 같은데 업데이트 다른다면 insert 한다. db.bios.update( { name: { first: 'Dennis', last: 'Ritchie'} }, { name: { first: 'Dennis', last: 'Ritchie'}, birth: new Date('Sep 09, 1941'), death: new Date('Oct 12, 2011'), contribs: [ 'UNIX', 'C' ], awards: [ { award: 'Turing Award', year: 1983, by: 'ACM'..