Chèn Document trong MongoDB
Phương thức insert() trong MongoDB Để chèn dữ liệu vào trong Collection trong MongoDB, bạn cần sử dụng phương thức insert() hoặc save(). Cú pháp Cú pháp cơ bản của lệnh insert() như sau: >db.COLLECTION_NAME.insert(document) Ví dụ >db.mycol.insert({ _id: ObjectId(7df78ad8902c), title: 'MongoDB Overview', description: 'MongoDB is no sql database', by: 'tutorials point', url: 'http://www.tutorialspoint.com', tags: ['mongodb', 'database', [ [ ...]