Questions tagged [mongodb]

MongoDB is a scalable, high-performance, open source, document-oriented database. It supports a large number of languages and application development platforms.

MongoDB is a widely used, general-purpose, document-oriented NoSQL database with features including high-availability replication and auto-sharding for horizontal scaling. The MongoDB database server and tools, written in C++, are open-sourced and available under AGPL v3.0 license or a Commercial License. MongoDB has strong support for dynamic querying and aggregating data including MapReduce and an Aggregation Framework. MongoDB uses BSON (Binary JSON) format for storage purposes and the MongoDB Wire Protocol for communication between client drivers and the MongoDB server. Officially supported Drivers and Client Libraries are available for most popular programming languages, and there are also Community Supported Drivers which offer alternative implementations and support for further programming languages.

The latest MongoDB server releases can be installed via common packaging systems or downloaded as binary archives from mongodb.org.


Reference:

adapted from Stack Overflow SE.

87 questions
1
vote
0 answers

Converting dates in a CSV file into Seasons?

I'm very new to MongoDB and clear with the basics but got stuck at a point. I'm working in MongoDB with a CSV file. In it, there's a column called 'Issue Date'. Some dates are represented as MM/DD/YYYY, the others as MM-DD-YYYY. I read in the…