Nupur Khare

MySQL Disable Foreign Key Checks

In this tutorial, we will learn how to disable foreign key checks in MySQL. MySQL’s Foreign Key Check feature can stop you from updating some databases’ tables with foreign key limitations. In certain situations, you can make your adjustments while MySQL’s foreign key check is temporarily disabled, and then re-enable it. It can be difficult …

MySQL Disable Foreign Key Checks Read More »

MySQL Text

In this tutorial, we will study how to store data in a database using MySQL Text. In a MySQL database, TEXT data objects can be used to store lengthy text strings. The TEXT column type family is designed for high-capacity character storage. In addition to the binary character set and collation, the Text also has …

MySQL Text Read More »

MySQL Nodejs – Delete

In this tutorial, we will study how to delete data in MySQL using the Nodejs application. Deleting MySQL records using Nodejs To delete a record from the MySQL database server using the Nodejs application, the DELETE FROM statement will be used. For this, we will write a javascript code. Here table is info in the …

MySQL Nodejs – Delete Read More »

MySQL Timestampdiff

In this tutorial, we will learn how to implement the MySQL TIMESTAMPDIFF function which will calculate the difference between two DATE or DATETIME values. Also read: MySQL Timestamp – Definition and Usage Introduction TIMESTAMPDIFF() in MySQL returns a value after dividing one DateTime expression by another.The two expressions don’t have to be of the same …

MySQL Timestampdiff Read More »

MySQL Percent_Rank() Function

In this tutorial, we will study Percent_Rank() function in MySQL. This function takes a column name as the argument and returns the number of rows with greater values than the sample value. Without further ado, let’s get started! Introduction to MySQL Percent_Rank() The Percent_Rank() function is one of many useful functions that are available in …

MySQL Percent_Rank() Function Read More »

MySQL Replace – Addon Uses

In this tutorial, we will study REPLACE() function in MySQL to insert and update data in tables. Also read: MySQL REPLACE() – Edit Strings and Replace Values in MySQL Introduction to MySQL REPLACE() In MySQL, Replace statement is used to replace the data in the tables. The process is executed by inserting a new row …

MySQL Replace – Addon Uses Read More »