MongoDB – How to query a MongoDB Collection (Part II)
MongoDB – How to query a MongoDB Collection (Part I) LIKE OPERATOR – ‘NNN%’ LIKE OPERATOR – ‘%NNN’ LIKE OPERATOR – ‘%NNN%’ AND WITH OR IN GROUP BY
MongoDB – How to query a MongoDB Collection (Part I) LIKE OPERATOR – ‘NNN%’ LIKE OPERATOR – ‘%NNN’ LIKE OPERATOR – ‘%NNN%’ AND WITH OR IN GROUP BY
In this post, we will see some query examples to run in a MongoDB database. We start writing this Docker-compose file to create a docker container with an instance of MongoDB: [DOCKER-COMPOSE.YML] Now, we execute the docker-composer file and then, we will use NoSQLBooster to run queries in the database: Now, we create a database… Read More »
In this post, we will see some MongoDB basic commands that will help us to manage our MongoDB instances.Here, we can find all Mongo DB’s commands. First of all, we connect to Mongo shell with the command mongo and then, we will start to run some commands: SHOW DBS – It shows all databases USE… Read More »
In this post, we will see how to install and configure MongoDB on macOS. First of all, we open the Terminal and run the command /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)” , in order to install Homebrew brew. Then, we run the command brew tap mongodb/brew, in order to download the official Homebrew formulae for MongoDB and… Read More »
In this post, we will see how to install and configure MongoDB on Windows.But first of all, what is MongoDB?MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability.A MongoDB Database is formed of three main components:DATABASE – the physical container for collectionsCOLLECTION – it is a group of… Read More »