You have learned how Subqueries works in the previous article. Now itâs time to explore how to insert, modify and delete data in your tables. This is where SQL becomes a powerful tool for maintaining and managing your database. Letâs walk through how to add, change, and remove data with clear examples using SQL Server.Documentation Index
Fetch the complete documentation index at: https://rajanand.org/llms.txt
Use this file to discover all available pages before exploring further.
Inserting Data into Tables
Adding new data to a table is done using theINSERT statement. Think of it as adding a new row to your spreadsheet.
Syntax:
Example: Adding a New Product
Imagine youâve just launched a new product, âFitness Band,â and want to add it to the Products table.| product_id | product_name | category | price | stock |
|---|---|---|---|---|
| 6 | Fitness Band | Fitness | 3500 | 20 |
Updating Data in Tables
What if your inventory changes, and you need to update the quantity of products in stock? Thatâs where theUPDATE statement comes in.
Syntax:
Example: Restocking a Product
Suppose a new shipment of Yoga Mats arrives, and you need to increase their stock by 30 units.Result: The stock for âYoga Matâ is updated:
| product_name | stock |
|---|---|
| Yoga Mat | 80 |
Deleting Data from Tables
Sometimes, youâll need to remove outdated or incorrect data. For this, you use theDELETE statement.
Syntax:
Example: Removing a Discontinued Product
Letâs say the âWireless Mouseâ is no longer sold. Hereâs how you can remove it from the Products table:Result: The âWireless Mouseâ is gone from the table.
Scenario: Managing Inventory
Letâs tie everything together with a realistic example:- Adding a new product:
You receive a new product, âTreadmill,â and want to add it to the database:
- Updating existing stock:
A shipment of âBluetooth Speakersâ arrives, so you increase their stock by 10 units:
- Removing a discontinued product:
The âSmartwatchâ is discontinued, so you delete it from the table:
Summary
- Use
INSERTto add new rows to your tables. - Use
UPDATEto modify existing data, but always double-check yourWHEREclause to avoid accidental updates. - Use
DELETEto remove rows, but be cautiousâdeleting without aWHEREclause removes all rows in the table.