Aditya Gupta

Aditya Gupta

NodeJS MongoDB Insert

MongoDB Insert Record Thumbnail

MongoDB is a NoSQL database that can store a large amount of unstructured data. Data stored in MongoDB are easy to retrieve as it can hold them in flexible formats depending upon the need such as graphs, key values, documents,…

NodeJS MySQL Drop Table

NodeJS MySQL Drop Table Thumbnail

MySQL stores data in the form of one or many tables and sometimes these tables become useless but take up some space, to free up the space and get rid of these tables, we can delete them by simply dropping…

NodeJS MySQL Select Record

NodeJS MySQL Select Record Thumbnail

MySQL is a relational database management system that stores data in one or more tables of rows and columns and uses structured query languages to perform different operations on them. MySQL can be used in NodeJS to store large amounts…

NodeJS MySQL Create Table

NodeJS MySQL Create Table Thumbnail

Creating a table is extremely important for storing data in multiple rows and columns in a MySQL database. MySQL stores data in the form of a table which can be created using SQL queries, SQL stands for Structured Query Language…

NodeJS MySQL Create Database

NodeJS MySQL Create Database Thumbnail

MySQL Database is used to store the collection of records in the form of tables consisting of rows and columns. The Database in MySQL can be handled using SQL queries. SQL stands for Structured Query Language, which can perform many…

NodeJS MySQL Create Connection

NodeJS MySQL Create Connection

MySQL is a relational database management system that stores data in one or more tables of columns and uses structured query languages to perform different operations on them. For interacting with MySQL Database it is required to run a MySQL…

Build a CRUD API in Node.js

CRUD API Thumbnail

API stands for Application Programming Interface that acts as a bridge between two systems such as a client and server in order to perform various operations on data. The client i.e the system which uses API can request different data…