1. Trang chủ
  2. » Thể loại khác

mongodb insert document

2 37 0

Đang tải... (xem toàn văn)

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 2
Dung lượng 128,75 KB

Nội dung

http://vietjack.com/mongodb/index.jsp                                                                                                              Copyright  ©  vietjack.com     Chèn Document MongoDB Phương thức insert() MongoDB Để chèn liệu vào Collection MongoDB, bạn cần sử dụng phương thứcinsert() save() Cú pháp Cú pháp lệnh insert() 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', 'NoSQL'], likes: 100 }) Ở đây, mycol tên Collection, tạo chương trước Nếu Collection chưa tồn sở liệu, MongoDB tạo Collection sau chèn Document vào Trong Document chèn, khơng xác định tham số _id, MongoDB gán ObjectId cho Document _id số thập lục phân nhất, dài 12 byte cho Document Collection 12 byte phân chia sau (đã mô tả chương trước): _id: ObjectId(4 bytes timestamp, bytes machine id, bytes process id, bytes incrementer) Để chèn nhiều Document truy vấn đơn, bạn truyền mảng Document lệnh insert() Ví dụ >db.post.insert([ { title: 'MongoDB Overview', description: 'MongoDB is no sql database', by: 'tutorials point', url: 'http://www.tutorialspoint.com', tags: ['mongodb', 'database', 'NoSQL'], likes: 100 }, { title: 'NoSQL Database', description: 'NoSQL database doesn't have tables', by: 'tutorials point', url: 'http://www.tutorialspoint.com', tags: ['mongodb', 'database', 'NoSQL'], likes: 20, comments: [ { user:'user1', http://vietjack.com/                                                                                                                              Trang  chia  sẻ  các  bài  học  online  miễn  phí     http://vietjack.com/mongodb/index.jsp                                                                                                              Copyright  ©  vietjack.com     message: 'My first comment', like: } ] } ]) dateCreated: new Date(2013,11,10,2,35), Để chèn liệu vào Document, bạn sử dụng db.post.save(document) Nếu bạn khơng xác định _id Document, phương thức save() làm việc giống phương thức insert() Nếu bạn xác định _id, thay tồn liệu Document chứa _id xác định phương thức save()   http://vietjack.com/                                                                                                                              Trang  chia  sẻ  các  bài  học  online  miễn  phí     ... liệu vào Document, bạn sử dụng db.post.save (document) Nếu bạn khơng xác định _id Document, phương thức save() làm việc giống phương thức insert( ) Nếu bạn xác định _id, thay tồn liệu Document. ..http://vietjack.com /mongodb/ index.jsp                                                                              

Ngày đăng: 02/12/2017, 11:46

w