SlideShare a Scribd company logo
Prepared by
The Smartpath Information Systems
www.thesmartpath.in
BASIC RDBMS CONCEPTS
Index
1. what is RDBMS
2. Database concepts
3. Explanation
4. Database three tier architecture
5. Relational Model
6. E-R Diagram
7. E-R Diagram (Explanation)
8. E-R Diagram (Explanation)
9. Rules for RDBMS
10. Keys in RDBMS
11. Keys in RDBMS(continue)
12. SQL in RDBMS
13. Basic Datatypes in SQL
Index
14. Operators in SQL - Arithmetic
15. Operators in SQL - Comparison
16. Operators in SQL - Logical
17. Operator with Examples - comparison operator
18. Operator with Examples - LIKE operator
19. Operator with Examples - AND operator
20. Operator with Examples - IN operator
21. RDBMS Databases - MYSQL
22. RDBMS Databases - MS SQL Server
23. RDBMS Databases - Oracle
What is RDBMS
RDBMS - Relational Database Management System
It is database management system based on relational model , which is
used to manage relational database. Relational model is organization of
data in tables which are interrelated.
Relational Database
It is organized collection of tables. Data is stored in tables. Tables are
related to each other using one or more fields.
.
Database concepts
Table
A table is collection of rows and columns. In RDBMS table is called Relation
and rows are called as tuple.
Record
A single row in a table is called record. It is also referred as tuple. It is a
collection of fields.
Column
It is collection of field values of same type.
Field
It contains data. The smallest entity of table is field.
Explanation
For Example
table STUDENT
Row
column
student_id Student_name marks
1101 abc 80
1101 Abc 80
Student_id
1101
1102
Database three tier architecture
Relational model
In relational model , each table is related to every other table in database.
There is one common field in tables which is used to relate them. Dept_no
field that relates department table and professor table.
E-R Diagram
The Entity Relationship Diagram
Explanation
Entity
An Entity represents a real world thing. For example student and class are
entities. In E-R diagram rectangle shape is used to represent entity.
Attribute
The characteristics of an entity are called attributes. Student is entity . It has
name , id , course he/she opts for are attributes.
first_name
Student
Explanation
Relationship
It describes how two entities are related to each other
Enrolls in Class
key attribute
It is the main characteristic of an entity. It is used to relate tables
student_name
student_id key attribute
Student
Student
Rules for RDBMS
Codd's twelve rules are a set of thirteen rules (numbered zero to twelve)
proposed by Edgar F. Codd, a pioneer of the relational model for databases,
designed to define what is required from a database management system in
order for it to be considered relational, i.e., a relational database management
system (RDBMS)They are sometimes referred to as "Codd's Twelve
Commandments".
A DBMS is said to be Relational Database management If it follows Codd’s
rules. Practically all rules are not followed , but RDBMS follows maximum
of he Codd’s rules
Keys in RDBMS
Primary Key
An attribute that is used to access the table data is called primary key. It must
Contain Unique values. It uniquely identifies a record in a table.
Candidate Key
It is set of attributes from which primary key is selected. One of them is made as
Primary key and rest are candidate keys. They are candidate for primary key.
It uniquely identifies a record.
Composite key
When more than one attributes are used to uniquely identify a record in a table
It becomes composite key.
Keys in RDBMS
Super Key
It is a set of attributes that uniquely identifies each record in a table. It is a
superset of candidate key.
Secondary Key
The candidate keys which are not selected as primary key , are called as
secondary key or alternate key.
SQL in RDBMS
Structure Query Language(SQL) is a programming language used for storing
and managing data in RDBMS. SQL was the first commercial language
introduced for E.F Codd's Relational model It is used to perform all types
of database operations. Almost all database use SQL as standard language
for manipulation of data. It is case sensitive language.
SQL is set of three data languages. These are
DDL - Data Definition Language. It is set of commands for defining table in
database
DCL - Data Control Language. It is set of commands used for controlling
access to database
DML - Data Manipulation Language. It is set of commands used to manipulate
table data.
Basic Data types in SQL
Char Takes Fixed length string 1 byte to 1000 bytes
Varchar Takes variable length string 1 byte to 4000 bytes
Varchar2 Takes variable length string 1 byte to 4000 bytes
Number It stores fixed and floating point
numbers
up to 38 digit
precision
Date It stores date values in dd-mm-yy
format
as required
Boolean It takes true or false value Only two values
T or F
Operators in SQL - Arithmetic
Operators in SQL – comparison
> Greater than
Checks if the value of left
operand is greater than the
value of right operand
(a > b)
< Less than
Checks if the value of left
operand is less than the value
of right operand
(a < b)
<> Not equal to Checks if are equal or not. (a <> b)
= Equal to
Checks if the values of two
operands are equal.
(a = b)
Operators in SQL - logical
ALL
The ALL operator is used to compare a value to all values in
another value set.
ANY
The ANY operator is used to compare a value to any applicable
value in the list according to the condition.
BETWEEN
The BETWEEN operator is used to search for values that are
within a set of values, given the minimum value and the
maximum value.
IN
The IN operator is used to compare a value to a list of literal
values that have been specified.
LIKE
The LIKE operator is used to compare a value to similar values
using wildcard operators.
Operators with examples
Table student
comparison operator <=
SELECT student_name , stu_id from student where marks >= 85
output –
David 1102
Student id Student
name
course marks
1101 John oca 80
1102 Rohit scjp 85
1103 Ramesh mca 82
Operators with examples
Like operator
SELECT * from student where student_name LIKE ‘r %’ ;
* means all fields.
output – 2 rows in which names begin with letter ‘r’
1102 Rohit scjp 85
1103 Ramesh mca 82
Operators with examples
AND operator – It is used to join two or more conditions. Output are the rows
That satisfy all conditions given in statement
SELECT student_id from student where marks > 80 AND student_name
LIKE ‘r%’ ;
output – we have given only one field to select i.e... Student id. Those student
ids who have name begin with ‘r’ and marks greater than 80.
1102
1103
Operators with examples
IN operator
SELECT course from student where name IN (‘ramesh’ , ‘rohit’ );
It searches rows and takes only those values of course in which name is
ramesh and rohit.
Output
Equivalently : SELECT course from student where name = ‘ramesh OR
name = ‘rohit’;
For multiple OR conditions we can use IN operator.
SCJP
MCA
RDBMS Databases
The following Databases are Relational Database Management System
MySQL
MySQL is an open source SQL database, which is developed by Swedish
company MySQL AB. MySQL supports many different platforms including
Microsoft Windows, the major Linux distributions, UNIX, and Mac OS X.
MySQL has free and paid versions , depending on its usage (non-
commercial/commercial) and features. MySQL comes with a very fast,
multi-threaded, multi-user, and robust SQL database server.
RDBMS Databases
MS SQL Server
Microsoft SQL Server is a relational database management system
developed by Microsoft. As a database server, it is a software product
with the primary function of storing and retrieving data as requested by
other software applications which may run either on the same computer
or on another computer across a network (including the Internet).
MS SQL Server is a Relational Database Management System developed by
Microsoft Inc. Its primary query languages are:
T-SQL.
ANSI SQL.
RDBMS Databases
ORACLE
It is a very large and multi-user database management system. Oracle is a
relational database management system developed by 'Oracle Corporation'.
Oracle works to efficiently manage its resource, a database of information,
among the multiple clients requesting and sending data in the network.
It is an excellent database server choice for client/server computing. Oracle
supports all major operating systems for both clients and servers, including
MSDOS, NetWare, UnixWare, OS/2 and most UNIX flavors.
The Smartpath Information Systems | BASIC RDBMS CONCEPTS

More Related Content

Viewers also liked (7)

PPT
Good Websites For Learning and Teaching
Mumbai, The Economics Club, Mumbai
 
PPT
Dbms presentaion
sai kumar rachakonda
 
PDF
Mysql introduction
Prof. Wim Van Criekinge
 
PPTX
Rdbms
rdbms
 
PPTX
Introduction of programming tips site
Ryosuke Miyahara
 
PPTX
Ppt on unemployment
manav500
 
PDF
UX, ethnography and possibilities: for Libraries, Museums and Archives
Ned Potter
 
Good Websites For Learning and Teaching
Mumbai, The Economics Club, Mumbai
 
Dbms presentaion
sai kumar rachakonda
 
Mysql introduction
Prof. Wim Van Criekinge
 
Rdbms
rdbms
 
Introduction of programming tips site
Ryosuke Miyahara
 
Ppt on unemployment
manav500
 
UX, ethnography and possibilities: for Libraries, Museums and Archives
Ned Potter
 

Similar to The Smartpath Information Systems | BASIC RDBMS CONCEPTS (20)

PPTX
Dbms sql-final
NV Chandra Sekhar Nittala
 
PDF
sql_data.pdf
VandanaGoyal21
 
PPTX
DATABASE MANAGMENT SYSTEM (DBMS) AND SQL
Dev Chauhan
 
PPTX
Unit I Database concepts - RDBMS & ORACLE
DrkhanchanaR
 
PPT
Fg d
Taha Khan
 
PPTX
Relational Database Management System
Mian Abdul Raheem
 
PDF
DATA MANAGEMENT computer science class 12 unit - 3 notes.pdf
NeetuPrasad16
 
PPTX
Dbms Basics
DR. Ram Kumar Pathak
 
PPTX
IP-Lesson_Planning(Unit4 - Database concepts and SQL).pptx
ssuser61d324
 
PDF
Bca examination 2015 dbms
Anjaan Gajendra
 
PPT
My sql
Muhammad Umar
 
PDF
Data Base Management System.pdf
TENZING LHADON
 
PPTX
RDMS AND SQL
milanmehta7
 
PPTX
IET MySQL PPT Ver9ZESXRDCTFYVGBUHNIJOMK.pptx
chinmaygulhane747
 
PPTX
Sql introduction
Bhavya Chawla
 
DOC
Sql Document in Testing
Saurabh Bhardwaj
 
DOCX
DBMS LAB M.docx
SuhaniSinha9
 
PPTX
DATABASE CONCEPTS AND PRACTICAL EXAMPLES
NathRam2
 
PPT
Relational D Bs3
kumar2
 
PDF
Cse ii ii sem
MdwebdevDev
 
sql_data.pdf
VandanaGoyal21
 
DATABASE MANAGMENT SYSTEM (DBMS) AND SQL
Dev Chauhan
 
Unit I Database concepts - RDBMS & ORACLE
DrkhanchanaR
 
Fg d
Taha Khan
 
Relational Database Management System
Mian Abdul Raheem
 
DATA MANAGEMENT computer science class 12 unit - 3 notes.pdf
NeetuPrasad16
 
IP-Lesson_Planning(Unit4 - Database concepts and SQL).pptx
ssuser61d324
 
Bca examination 2015 dbms
Anjaan Gajendra
 
Data Base Management System.pdf
TENZING LHADON
 
RDMS AND SQL
milanmehta7
 
IET MySQL PPT Ver9ZESXRDCTFYVGBUHNIJOMK.pptx
chinmaygulhane747
 
Sql introduction
Bhavya Chawla
 
Sql Document in Testing
Saurabh Bhardwaj
 
DBMS LAB M.docx
SuhaniSinha9
 
DATABASE CONCEPTS AND PRACTICAL EXAMPLES
NathRam2
 
Relational D Bs3
kumar2
 
Cse ii ii sem
MdwebdevDev
 
Ad

Recently uploaded (20)

PPTX
Views on Education of Indian Thinkers J.Krishnamurthy..pptx
ShrutiMahanta1
 
PDF
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
PPTX
How to Set Maximum Difference Odoo 18 POS
Celine George
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PDF
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPTX
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PDF
Dimensions of Societal Planning in Commonism
StefanMz
 
PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PDF
Isharyanti-2025-Cross Language Communication in Indonesian Language
Neny Isharyanti
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
Views on Education of Indian Thinkers J.Krishnamurthy..pptx
ShrutiMahanta1
 
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
How to Set Maximum Difference Odoo 18 POS
Celine George
 
community health nursing question paper 2.pdf
Prince kumar
 
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
Dimensions of Societal Planning in Commonism
StefanMz
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
Isharyanti-2025-Cross Language Communication in Indonesian Language
Neny Isharyanti
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
Ad

The Smartpath Information Systems | BASIC RDBMS CONCEPTS

  • 1. Prepared by The Smartpath Information Systems www.thesmartpath.in BASIC RDBMS CONCEPTS
  • 2. Index 1. what is RDBMS 2. Database concepts 3. Explanation 4. Database three tier architecture 5. Relational Model 6. E-R Diagram 7. E-R Diagram (Explanation) 8. E-R Diagram (Explanation) 9. Rules for RDBMS 10. Keys in RDBMS 11. Keys in RDBMS(continue) 12. SQL in RDBMS 13. Basic Datatypes in SQL
  • 3. Index 14. Operators in SQL - Arithmetic 15. Operators in SQL - Comparison 16. Operators in SQL - Logical 17. Operator with Examples - comparison operator 18. Operator with Examples - LIKE operator 19. Operator with Examples - AND operator 20. Operator with Examples - IN operator 21. RDBMS Databases - MYSQL 22. RDBMS Databases - MS SQL Server 23. RDBMS Databases - Oracle
  • 4. What is RDBMS RDBMS - Relational Database Management System It is database management system based on relational model , which is used to manage relational database. Relational model is organization of data in tables which are interrelated. Relational Database It is organized collection of tables. Data is stored in tables. Tables are related to each other using one or more fields. .
  • 5. Database concepts Table A table is collection of rows and columns. In RDBMS table is called Relation and rows are called as tuple. Record A single row in a table is called record. It is also referred as tuple. It is a collection of fields. Column It is collection of field values of same type. Field It contains data. The smallest entity of table is field.
  • 6. Explanation For Example table STUDENT Row column student_id Student_name marks 1101 abc 80 1101 Abc 80 Student_id 1101 1102
  • 7. Database three tier architecture
  • 8. Relational model In relational model , each table is related to every other table in database. There is one common field in tables which is used to relate them. Dept_no field that relates department table and professor table.
  • 9. E-R Diagram The Entity Relationship Diagram
  • 10. Explanation Entity An Entity represents a real world thing. For example student and class are entities. In E-R diagram rectangle shape is used to represent entity. Attribute The characteristics of an entity are called attributes. Student is entity . It has name , id , course he/she opts for are attributes. first_name Student
  • 11. Explanation Relationship It describes how two entities are related to each other Enrolls in Class key attribute It is the main characteristic of an entity. It is used to relate tables student_name student_id key attribute Student Student
  • 12. Rules for RDBMS Codd's twelve rules are a set of thirteen rules (numbered zero to twelve) proposed by Edgar F. Codd, a pioneer of the relational model for databases, designed to define what is required from a database management system in order for it to be considered relational, i.e., a relational database management system (RDBMS)They are sometimes referred to as "Codd's Twelve Commandments". A DBMS is said to be Relational Database management If it follows Codd’s rules. Practically all rules are not followed , but RDBMS follows maximum of he Codd’s rules
  • 13. Keys in RDBMS Primary Key An attribute that is used to access the table data is called primary key. It must Contain Unique values. It uniquely identifies a record in a table. Candidate Key It is set of attributes from which primary key is selected. One of them is made as Primary key and rest are candidate keys. They are candidate for primary key. It uniquely identifies a record. Composite key When more than one attributes are used to uniquely identify a record in a table It becomes composite key.
  • 14. Keys in RDBMS Super Key It is a set of attributes that uniquely identifies each record in a table. It is a superset of candidate key. Secondary Key The candidate keys which are not selected as primary key , are called as secondary key or alternate key.
  • 15. SQL in RDBMS Structure Query Language(SQL) is a programming language used for storing and managing data in RDBMS. SQL was the first commercial language introduced for E.F Codd's Relational model It is used to perform all types of database operations. Almost all database use SQL as standard language for manipulation of data. It is case sensitive language. SQL is set of three data languages. These are DDL - Data Definition Language. It is set of commands for defining table in database DCL - Data Control Language. It is set of commands used for controlling access to database DML - Data Manipulation Language. It is set of commands used to manipulate table data.
  • 16. Basic Data types in SQL Char Takes Fixed length string 1 byte to 1000 bytes Varchar Takes variable length string 1 byte to 4000 bytes Varchar2 Takes variable length string 1 byte to 4000 bytes Number It stores fixed and floating point numbers up to 38 digit precision Date It stores date values in dd-mm-yy format as required Boolean It takes true or false value Only two values T or F
  • 17. Operators in SQL - Arithmetic
  • 18. Operators in SQL – comparison > Greater than Checks if the value of left operand is greater than the value of right operand (a > b) < Less than Checks if the value of left operand is less than the value of right operand (a < b) <> Not equal to Checks if are equal or not. (a <> b) = Equal to Checks if the values of two operands are equal. (a = b)
  • 19. Operators in SQL - logical ALL The ALL operator is used to compare a value to all values in another value set. ANY The ANY operator is used to compare a value to any applicable value in the list according to the condition. BETWEEN The BETWEEN operator is used to search for values that are within a set of values, given the minimum value and the maximum value. IN The IN operator is used to compare a value to a list of literal values that have been specified. LIKE The LIKE operator is used to compare a value to similar values using wildcard operators.
  • 20. Operators with examples Table student comparison operator <= SELECT student_name , stu_id from student where marks >= 85 output – David 1102 Student id Student name course marks 1101 John oca 80 1102 Rohit scjp 85 1103 Ramesh mca 82
  • 21. Operators with examples Like operator SELECT * from student where student_name LIKE ‘r %’ ; * means all fields. output – 2 rows in which names begin with letter ‘r’ 1102 Rohit scjp 85 1103 Ramesh mca 82
  • 22. Operators with examples AND operator – It is used to join two or more conditions. Output are the rows That satisfy all conditions given in statement SELECT student_id from student where marks > 80 AND student_name LIKE ‘r%’ ; output – we have given only one field to select i.e... Student id. Those student ids who have name begin with ‘r’ and marks greater than 80. 1102 1103
  • 23. Operators with examples IN operator SELECT course from student where name IN (‘ramesh’ , ‘rohit’ ); It searches rows and takes only those values of course in which name is ramesh and rohit. Output Equivalently : SELECT course from student where name = ‘ramesh OR name = ‘rohit’; For multiple OR conditions we can use IN operator. SCJP MCA
  • 24. RDBMS Databases The following Databases are Relational Database Management System MySQL MySQL is an open source SQL database, which is developed by Swedish company MySQL AB. MySQL supports many different platforms including Microsoft Windows, the major Linux distributions, UNIX, and Mac OS X. MySQL has free and paid versions , depending on its usage (non- commercial/commercial) and features. MySQL comes with a very fast, multi-threaded, multi-user, and robust SQL database server.
  • 25. RDBMS Databases MS SQL Server Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, it is a software product with the primary function of storing and retrieving data as requested by other software applications which may run either on the same computer or on another computer across a network (including the Internet). MS SQL Server is a Relational Database Management System developed by Microsoft Inc. Its primary query languages are: T-SQL. ANSI SQL.
  • 26. RDBMS Databases ORACLE It is a very large and multi-user database management system. Oracle is a relational database management system developed by 'Oracle Corporation'. Oracle works to efficiently manage its resource, a database of information, among the multiple clients requesting and sending data in the network. It is an excellent database server choice for client/server computing. Oracle supports all major operating systems for both clients and servers, including MSDOS, NetWare, UnixWare, OS/2 and most UNIX flavors.