MySQL Select Records

Example

Retrieve all data from the table "employees".

Create a js file named select.js having the following data in DBexample folder.

snippet
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "12345",
database: "rookienerd"
});
con.connect(function(err) {
if (err) throw err;
con.query("SELECT * FROM employees", function (err, result) {
if (err) throw err;
console.log(result);
});
});

Now open command terminal and run the following command:

snippet
Node select.js
Node.js select record 1

You can also use the statement:

snippet
SELECT * FROM employees;
Node.js select record 2
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +