Tag Archives: Database

MongoDB – How to install and configure MongoDB in Windows?

By | March 25, 2023

MongoDB is an open source NoSQL database, which means that unlike SQL, we do not store data in the form of tables and columns, i.e., it will not follow the RDBMS rules. It is a scalable, high-performance, document-oriented database. Difference between SQL and NoSQL database SQL Database NoSQL Database In an SQL database, we need… Read More: MongoDB – How to install and configure MongoDB in Windows? »

How to design a Database Schema?

By | June 17, 2025

The Database Schema is a type of blueprint or structure which represents the logical view of the database in a formal language supported by DBMS(Database Management System). It defines all the entities and their relationship with each other. The schema does not contain any actual data it’s just a visual representation of the database which… Read More: How to design a Database Schema? »