MySQL Intro Hitesh Updated

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 12

MYSQL TRAINING

By
HITESH
HELLO! I am HITESH
BI CONSULTANT,DATA SCIENTIST,CORPORATE TRAINER
hitesh.analyst1@gmail.com.com
hitesh6182

2
DATA EVANGELIST

EDUCATOR

3
TRAINED IN 60 + COMPANIES MORE THAN 18000 DELEGATES

EXPERT IN DATA ANALYTICS AND BI SQL,POWERBI,MSBI,PYTHON,R,EXCEL,VBA

4
BASICS 1 5
DATABASE is an Organized Collection of Information
DATA can be facts related to any object in consideration , for ex – Your name,Age,Height,Weight etc
are some data related to you .A picture ,image, file ,pdf also can be considered data

EXAMPLES OF
DATABASE
An online telephone directory uses a database to store data of people, phone numbers, and other
contact details

Your electricity service provider uses a database to manage billing, client-related issues,
handle fault data, etc.

Facebook uses database to store, manipulate, and present data related to members, their
friends, member activities, messages, advertisements, and a lot more

6
DIFFERENT TYPES OF DATABASE

 HIERARCHIAL DATABASES

 NETWORK DATABASES

 OBJECT ORIENTED DATABASES

 RELATIONAL DATABASES

7
HIERARCHIAL DATABASES

This type of DBMS employs the “parent-child” relationship of storing data. Its structure is like a tree with nodes
representing records and branches representing fields ,Windows Registry is an Example of this Database

College

Department Infrastrcuture

Course Teacher Students

“In order to retrieve data from a hierarchical database, the whole tree
Theory Lab needs to be traversed starting from the root node”

8
NETWORK DATABASES

University
In this type of model, a child can be
linked to multiple parents, a
feature that was not supported by
the hierarchical data model. The Maths Physics
College
parent nodes are known as owners
and the child nodes are called
members Library Lab

Student Course Faculty

Name ID Marks Name ID Name Salary

9
OBJECT ORIENTED DATABASE

In this type of model, a child can be linked to multiple parents, a feature that was not supported by the
hierarchical data model. The parent nodes are known as owners and the child nodes are called members
Vehicle
ANIMAL CLASS
Abstract Draw()

Car Motorbike

Draw() Draw()

DOG CLASS CAT CLASS COW CLASS


CAR CLASS

CAR OBJECTS

10
RELATIONAL DATABASE

In this type of model, Data is stored in Two Dimensional tables using Rows and columns ,Each
Table is connected to other table using relationships

Employee Employee Gender ID Dept Id Dept Id Department


Id
1 IT
1 Hitesh 1 1
2 Sales
2 Raj 1 2
3 HR
3 Shruthi 2 1

Gender Id Gender

1 Male

2 Female

11
RELATIONAL DATABASE MANGEMENT SYSTEM

“The Software used to store,manage,query and retrieve data stored in a relational


database is called a Relational Database Management System”

12

You might also like