EN አማ
Back to TTLM Library
SQL CRUD  Operations

SQL CRUD Operations

Sintayehu  |  June 28, 2026 at 8:45 PM  |  22 days ago  |  21 views

CRUD is a universal acronym that stands for the four most fundamental actions you can perform on any database or data storage system: Create, Read, Update, and Delete.

Whether you are scrolling through social media, shopping online, or checking your emails, almost every interactive app in the world is just a user interface built to let you perform these four operations on a database.

Here is an abstract breakdown of CRUD operations for beginners, explained purely through concepts and real-world examples.

1. CREATE

The Create operation is used to add brand-new records to a database table.

The Concept: Introducing a completely new piece of information into a digital filing system where it didn't exist before.

Real-World Example: You fill out a signup form on a website and click "Register." The backend system takes your details and creates a brand-new user profile inside its database. Another example is clicking "New Document" in a cloud app or posting a new tweet.

2. READ

The Read operation is used to retrieve or view existing data from a database. It is by far the most frequently used operation on the internet.

The Concept: Asking the database to look up and show you specific information without changing or destroying it.

Real-World Example: You log into Netflix and view your dashboard, look at your profile page on a social network, or search for "running shoes" on an e-commerce store. The website searches its database and displays the matched information on your screen.

3. UPDATE

The Update operation is used to modify or edit data that already exists inside the database.

The Concept: Locating an existing record and altering some or all of its specific details while keeping the rest of the file intact.

Real-World Example: You go into your account settings to change your password, edit a typo in a blog post you published yesterday, or a banking system updates your account balance after you withdraw cash.

The Golden Rule: An update operation always requires a specific target. If a system doesn't know exactly which record to update, it risks changing the data for everyone.

4. DELETE

The Delete operation is used to permanently remove records from a database.

The Concept: Erasing an existing piece of data so that it can no longer be read, found, or updated.

Real-World Example: You click a button that says "Deactivate my account," remove an item from your digital shopping cart, or trash an old email.

The Golden Rule: Just like the update operation, a delete operation needs a precise target. Without specifying exactly what to remove, a delete command can accidentally wipe out an entire database table.

Summary of the User Experience

To see how they all work together in a single app, think of a digital photo gallery:

Create: You upload a new photo.

Read: You view your gallery feed.

Update: You edit the caption of a photo.

Delete: You click the trash icon to remove a photo.

Previous | Next