Database Transactions

Published: (January 13, 2026 at 07:00 PM EST)
1 min read

Source: PlanetScale Blog

Overview

Transactions are fundamental to how SQL databases work. Trillions of transactions execute every single day, across the thousands of applications that rely on SQL databases.

What is a database transaction?

A transaction is a sequence of actions that we want to perform on a database as a single, atomic…

Back to Blog

Related posts

Read more »

How To Solve LeetCode 1193

Problem Description The table Transactions has the following columns: - id primary key - country - state enumeration: 'approved' or 'declined' - amount - trans...

How To Solve LeetCode 586

Problem Overview The task is to identify the customer number that has placed the largest quantity of orders. The Orders table contains two identifier columns:...