ALL articles of MySQL

How to find last 2 months record using SQL Query

We will share with you in this article how to find last 2 months record using SQL Query SELECT *, DATEDIFF(NOW(),`created_at`)as Datedif...

READ MORE

Delete data from MySQL database table using Node.js

In this tutorial article, we will see how to delete data from MySQL database using Node.js. We will use where condition to delete specific r...

READ MORE

Update data in MySQL database table using Node.js

In this tutorial article, we will learn how to update data from MySQL database using Node.js. We will use where condition to update specific...

READ MORE

Select from MySQL database table using Node.js

In this article, we will guide you to how to select data from MySQL table using Node.js. We will use MySQL select, where, order by etc. stat...

READ MORE

Insert rows into MySQL database table from Node.js

In this article, we will guide you to how to insert rows into MySQL table from Node.js. We perform following steps to insert rows into ta...

READ MORE

Create table in the MySQL Database Server from Node.js

This article will guide you to how to create table into MySQL database server from Node.js. First create connection between MySQL se...

READ MORE