1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| >movie = {"title" : "Star Wars: Episode IV - A New Hope", "director" : "George Lucas", "year" : 1977} { "title" : "Star Wars: Episode IV - A New Hope", "director" : "George Lucas", "year" : 1977 }
>db.movies.insertOne(movie) #영화가 데이터 베이스에 저장됨 { "acknowledged" : true, "insertedId" : ObjectId("6266057e4619361339f0c881") } #Find 함수로 호출 >db.movies.find().pretty() { "_id" : ObjectId("6266057e4619361339f0c881"), "title" : "Star Wars: Episode IV - A New Hope", "director" : "George Lucas", "year" : 1977 }
|