Library Management System
JAGANNATH DANSANNA REG NO-200301120080
Branch- CSE
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
What is a
Database?
A database is a container where data can be collected systematically. Managing,
manipulation of those
data are easy
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Example of
Databases
Suppose an online telephone
directory uses a database to
store their data, Like: Name,
address. phone numbers, other
contact details.
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Example of
Databases
Or an online library who has
millions of books. In order
maintain their data they use
database
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
What is a Database management
System?
A Database Management System (DBMS) is basically a software where you can store,
retrieve, define,
and manage your data in a database.
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Most used Databases
Management systems
Software
 MySQL
 Oracle
 PostgreSQL
 SQLite
 Maria DB
 PostgreSQL
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Types of Databases
Management
systems
 Hierarchical database
 Network database
 Relational database
 Object-Oriented database
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
What is Relational Database
management
System?
A Relational database management system (RDBMS) is used for the database
management system
(DBMS). The concept is based on the relational model as introduced by E. F. Codd.
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Key Concept In DBMS
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
What is Key in
RDBMS?
Key concept has an important role in relational database management system. This
technique is used for identifying the unique rows from table and also help to establish
relationship among the tables
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Types of Key in
RDBMS
Alternate key
4
Composite key
5
Foreign key
6
Primary key 1
Super Key 2
Candidate key 3
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
What is
SQL?
 SQL stands for Structured Query Language
 SQL helps to access and manipulate your databases
 SQL became a standard of the American National Standards
Institute (ANSI) in 1986, and of the International Organization for
Standardization (ISO) in 1987
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Getting started with
MySQL
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
This is the site to install MySQL ->
https://www.mysql.com/downloads/
Installing
MySQL
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Types of command in
MySQL: DDL
DCL
4
TCL
5
DDL 1
DQL 2
DML 3
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Basic commands for
MYSQL
INSERT INTO Customers (CustomerName, ContactName, Address, City,
PostalCode, Country)
VALUES (‘Priti', Ms. Chatterjee', ‘4/56 College street
21', ‘Kolkata', ‘70032', ‘India');
SELECT * FROM Customers show databases;
create database demo; use demo;
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Library Management
System
ER MODEL
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Table
schema
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution
prohibited
Thank You

Library management system

  • 1.
    Library Management System JAGANNATHDANSANNA REG NO-200301120080 Branch- CSE
  • 2.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited What is a Database? A database is a container where data can be collected systematically. Managing, manipulation of those data are easy
  • 3.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Example of Databases Suppose an online telephone directory uses a database to store their data, Like: Name, address. phone numbers, other contact details.
  • 4.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Example of Databases Or an online library who has millions of books. In order maintain their data they use database
  • 5.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited What is a Database management System? A Database Management System (DBMS) is basically a software where you can store, retrieve, define, and manage your data in a database.
  • 6.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Most used Databases Management systems Software  MySQL  Oracle  PostgreSQL  SQLite  Maria DB  PostgreSQL
  • 7.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Types of Databases Management systems  Hierarchical database  Network database  Relational database  Object-Oriented database
  • 8.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited What is Relational Database management System? A Relational database management system (RDBMS) is used for the database management system (DBMS). The concept is based on the relational model as introduced by E. F. Codd.
  • 9.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Key Concept In DBMS
  • 10.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited What is Key in RDBMS? Key concept has an important role in relational database management system. This technique is used for identifying the unique rows from table and also help to establish relationship among the tables
  • 11.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Types of Key in RDBMS Alternate key 4 Composite key 5 Foreign key 6 Primary key 1 Super Key 2 Candidate key 3
  • 12.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited What is SQL?  SQL stands for Structured Query Language  SQL helps to access and manipulate your databases  SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987
  • 13.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Getting started with MySQL
  • 14.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited This is the site to install MySQL -> https://www.mysql.com/downloads/ Installing MySQL
  • 15.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Types of command in MySQL: DDL DCL 4 TCL 5 DDL 1 DQL 2 DML 3
  • 16.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Basic commands for MYSQL INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country) VALUES (‘Priti', Ms. Chatterjee', ‘4/56 College street 21', ‘Kolkata', ‘70032', ‘India'); SELECT * FROM Customers show databases; create database demo; use demo;
  • 17.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Library Management System
  • 18.
  • 19.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Table schema
  • 23.
    Proprietary content. ©GreatLearning. All Rights Reserved. Unauthorized use or distribution prohibited Thank You