Skip to content

Commit 3bd0b69

Browse files
authored
Updated README.md
1 parent 6452daa commit 3bd0b69

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
# 🌟 Database Management Systems (DBMS) - BASICS 🌟
1+
# 🌟 Database Management Systems - BASICS 🌟
22

33
<img src="https://brainalyst.in/wp-content/uploads/2022/08/Database-Management-System.jpg" />
44

55
### Introduction πŸ“š
66
Whether you are just starting with databases or looking to refine your skills, this repository offers comprehensive insights into designing, querying, and managing relational databases. Explore the core concepts through practical examples and detailed explanations tailored for learners and professionals alike.
7+
8+
---
9+
710
### Contents πŸ“‹
811

912
1. **Data Definition Language (DDL)**
@@ -23,6 +26,8 @@ Whether you are just starting with databases or looking to refine your skills, t
2326
- SAVEPOINT πŸ“
2427
5. **Examples**
2528

29+
---
30+
2631
### Data Definition Language (DDL) πŸ› οΈ
2732

2833
DDL statements are used to define, alter, and manage database schema.
@@ -76,7 +81,7 @@ Used to delete all rows from a table without deleting the table itself.
7681
-- Truncate a table
7782
TRUNCATE TABLE employees;
7883
```
79-
84+
---
8085

8186
### Data Query Language (DQL) πŸ”
8287

@@ -94,6 +99,8 @@ SELECT name, department FROM employees WHERE age > 30;
9499
SELECT * FROM employees;
95100
```
96101

102+
---
103+
97104
### Data Manipulation Language (DML) βž•
98105

99106
DML statements are used for managing data within schema objects.
@@ -135,6 +142,8 @@ DELETE FROM employees WHERE age < 30;
135142
-- Delete all records
136143
DELETE FROM employees;
137144
```
145+
---
146+
138147
### Transaction Control Language (TCL) πŸ’Ύ
139148

140149
TCL statements are used to manage transactions in the database.
@@ -168,6 +177,7 @@ SAVEPOINT sp1;
168177
-- Rollback to the savepoint
169178
ROLLBACK TO SAVEPOINT sp1;
170179
```
180+
---
171181

172182
### Examples πŸ“‹
173183

0 commit comments

Comments
Β (0)