0% found this document useful (0 votes)
15 views8 pages

Introduction To Databases

This presentation introduces databases, explaining their function as organized digital filing systems that store structured data. It highlights the importance of databases in modern applications, their organization into tables, and the relationships between them. Additionally, it contrasts relational databases (SQL) with non-relational databases (NoSQL) in terms of structure, query language, scalability, and use cases.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views8 pages

Introduction To Databases

This presentation introduces databases, explaining their function as organized digital filing systems that store structured data. It highlights the importance of databases in modern applications, their organization into tables, and the relationships between them. Additionally, it contrasts relational databases (SQL) with non-relational databases (NoSQL) in terms of structure, query language, scalability, and use cases.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 8

Introduction to

Databases
Welcome to the world of databases! This presentation will cover
what databases are. We will also learn why they're so important.
Finally, we will discuss the different types.

ct
by cham thathsarani
What is a Database?
Digital Filing Cabinet Structured Data Neat and Accessible

A database is like a digital filing Databases keep data neat and Instead of scattered papers,
cabinet. It stores and organizes lots accessible. Think of data like everything is kept neat. All the
of information. names and addresses. data is easily accessible.
Why are Databases Important?
1 Remember 2 Essential 3 Useful and Powerful
Information
Imagine Amazon without a
Modern apps need databases database, it would not Databases make apps more
to remember things. remember your orders. useful and powerful. They
store logins and track data.
Key Concept: Tables
Organized Data Rows and Columns Logical Organization
Databases are organized into Each row is a record, like one Tables help organize data in a
tables. Tables are like customer. Each column is an logical way. This helps for sorting
spreadsheets. attribute, like name. and searching.
Key Concept:
Relationships

Databases can link An "Orders" table Relationships avoid


tables together. might link to repeating
These links are "Customers". This information. They
relationships. shows orders and keep data
customers. consistent, which
reduces
redundancy.
Relational Databases
(SQL)
1 Most Common
The most common type of database. They use tables
with relationships.

2 SQL Language
Uses SQL to access and manage data. SQL is a
standard query language.

3 Reliable
Great for structured data and complex queries. Known
for their reliability.
Non-Relational
Databases (NoSQL)
Not Only SQL
"NoSQL" means "not only SQL". More flexible than
relational databases.

Different Ways
There are different ways to store data. NoSQL
databases use different methods.

High Scalability
Often used for high scalability. Good for handling
unstructured data quickly.
Relational vs. Non-Relational
Feature Relational (SQL) Non-Relational (NoSQL)

Data Structure Tables, rows, columns Documents, key-value pairs, graphs

Query Language SQL Varies (often JSON-based)

Scalability Vertical (scale up) Horizontal (scale out)

Consistency Strong (ACID) Eventual (BASE)

Use Cases Structured data, transactions Unstructured data, high traffic

You might also like