Skip to main content
  1. Tags/

databases

An Introduction to MySQL Locks

·6 mins
Concurrent access to database records from different client sessions can impact data integrity and lead to the expected behavior of computer programs that perform specific actions depending on the value of the data retrieved from the database. In this article, I will give you an introduction to how MySQL locks can be used for concurrency control and guarantee data integrity while allowing multiple users or sessions to safely interact with data. I will also write about the popular types of MySQL locks.

SQL Insert Into Select Statement - An Overview

·5 mins
In this article, I will introduce you to the INSERT INTO SELECT statement that is supported by every major SQL engine. This statement allows you to copy a large amount of data from one or more tables into another table efficiently.