Search found 1 match

by bbyter
Sun Jan 08, 2023 11:13 am
Forum: General Discussion
Topic: How to load SQL data into MongoDB using python script
Replies: 3
Views: 12316

Re: How to load SQL data into MongoDB using python script

Hi, Once you have the source data in JSON format, the next step is to insert the data into a MongoDB collection. A collection is a set of documents and is the NoSQL equivalent of a table (or relation) in an RDBMS. We do that by calling the insert_many() method of the collection class, which returns ...

Go to advanced search