Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Class notes

Class notes DBMS

Rating
-
Sold
-
Pages
6
Uploaded on
22-10-2025
Written in
2025/2026

DBMS Full Course PDF – University Level This is a concise, complete Database Management System (DBMS) study guide for university students. What’s included: Full DBMS course coverage (ER Models, Relational Model, Normalization, Transactions) MySQL terminal-style code examples for practical understanding Advanced SQL (JOINs, Subqueries, Aggregate Functions, Views, Indexes, Stored Procedures, Triggers) Backup, Recovery, and real-world examples Clear, no-fluff explanations – perfect for quick learning and exam prep Ideal for students, developers, or anyone learning database management and SQL. Ready-to-use PDF for self-study, class notes, or reference.

Show more Read less
Institution
Course

Content preview

University-Level Database Management System (DBMS) Course PDF




1. Introduction to DBMS
Definition: Database Management System (DBMS) is software that manages data, databases, and provides
users with the tools to store, manipulate, and retrieve data efficiently.


Types of DBMS: - Hierarchical DBMS - Network DBMS - Relational DBMS (RDBMS) - NoSQL DBMS


Advantages: - Reduced data redundancy - Data consistency - Data security - Multiple user access - Easy
data retrieval




2. Database Models
ER Model: - Entities: Real-world objects (Student, Course) - Attributes: Properties of entities (StudentName,
RollNo) - Relationships: Links between entities (Enrolls)


ER Diagram Example:



Student --< Enrolls >-- Course



ER to Table Conversion: - Entity becomes table - Attributes become columns - Relationships mapped via
foreign keys




3. Relational Model
Tables: Rows (tuples), Columns (attributes)


Keys: - Primary Key (PK) : Unique identifier - Foreign Key (FK) : Links tables


Relationships: - 1:1, 1:M, M:N




4. SQL Basics
Database Creation:




1

, CREATE DATABASE UniversityDB;
USE UniversityDB;



Table Creation:



CREATE TABLE Student (
RollNo INT PRIMARY KEY,
StudentName VARCHAR(50),
Age INT
);



Insert Data:



INSERT INTO Student VALUES (1, 'Alice', 20);
INSERT INTO Student VALUES (2, 'Bob', 21);



Select Data:



SELECT * FROM Student;
SELECT StudentName FROM Student WHERE Age > 20;



Update Data:



UPDATE Student SET Age = 22 WHERE RollNo = 2;



Delete Data:



DELETE FROM Student WHERE RollNo = 1;




5. Advanced SQL
JOINs:



-- INNER JOIN
SELECT Student.StudentName, Course.CourseName




2

Written for

Institution
Course

Document information

Uploaded on
October 22, 2025
Number of pages
6
Written in
2025/2026
Type
Class notes
Professor(s)
Lumenius
Contains
All classes

Subjects

$3.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
abdunnur

Get to know the seller

Seller avatar
abdunnur Shanto-Mariam University of Creative Technology
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
6 months
Number of followers
0
Documents
1
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions