MySQL

MySQL Examples and Tutorials

MySQL Boolean Full-Text Searches

MySQL provides us with multiple methods for searching functionalities. The “LIKE” clause is supposed as the best searching method for easy and less complex use cases. For complex business logic, there are other alternative methods that are very effective, suitable, and easy to implement. In this tutorial, we will learn about the boolean full-text search …

MySQL Boolean Full-Text Searches Read More »

Update MySQL Table using NodeJS

In this tutorial, we will study how to update the records of the table using the Nodejs application. Update the table from NodeJS program To update the records in the table, the UPDATE statement will be used. We will update the table using the update.js file. The javascript code for the following is: Here we …

Update MySQL Table using NodeJS Read More »

Create MySQL tables using Nodejs

In this tutorial, we will learn how to create tables in the MySQL database server from the Nodejs application. Connecting to MySQL database server First of all, we connect our Nodejs application to the MySQL database server. For that, the code given below will set up the connection. Here we have first connected to the …

Create MySQL tables using Nodejs Read More »