Home » Node.js

Search record with two fields from MYSQL table by using Node.js

In this article, we are going to learn how to search record with two fields from MYSQL table using Node.js Server?
Submitted by Manu Jemini, on November 25, 2017

Prerequisite/recommended:

In this article, we are going to do is to prepare a server file of Node.js where we require the MySQL module to work with MySQL and after that, we prepare a connection by using mysql.createConnection() method of MySQL module.

There are certain things that we have to define inside our create connection methods like host, user, password, and database name.

As we are all set to go with our connection, all we need to create an SQL query to count data basically a select query and two fields name by which we can search the records from MySQL table and after that we can use query() method to execute query statement with a callback in which we can throw error if any and print the number of records available in MYSQL table.

Database details:

  • Hostname: localhost
  • Port number: 3306
  • Username: root
  • Password: 123
  • Database: demo
  • Table name: clients
  • Fields: id and name

Server File

//step-1
var mysql = require('mysql');
//step-2
var con = mysql.createConnection({
  host: "127.0.0.1",
  user: "root",
  password: "123",
  database: "demo"
});
//step-3
con.connect(function(err) {
  if (err) throw err;
  console.log("Connected!");
  var sql = "select * from clients where id='1' and name='Aman'";
//step-4
  con.query(sql, function (err, result) {
    if (err) throw err;
    console.log(result);
  });
});

Discussing steps that we have followed in our server file:

  • Require MySQL module.
  • Create Connection variable using mysql.createConnection() method.
  • Connect by using con.connect() method.
  • Creating a SELECT SQL query by using fields id and name.
  • Execute query by using .query() method.
  • Show result.

Output/result

Node.js - search record with two fields

If you have any query do comment.




Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.