SlideShare a Scribd company logo
1 of 27
Department of Information Technology 1Data base Technologies (ITB4201)
Introduction to Relational Calculus
Dr. C.V. Suresh Babu
Professor
Department of IT
Hindustan Institute of Science & Technology
Department of Information Technology 2Data base Technologies (ITB4201)
Discussion Topics
• DBMS Architecture
• Relational Algebra Review
• Relational calculus
• Relational calculus building blocks
• Tuple relational calculus
• Tuple relational calculus Formulas
• Quiz
Department of Information Technology 3Data base Technologies (ITB4201)
DBMS Architecture
How does a SQL engine work ?
• SQL query  relational
algebra plan
• Relational algebra plan 
Optimized plan
• Execute each operator of the
plan
Query Optimization
and Execution
Relational Operators
Files and Access Methods
Buffer Management
Disk Space Management
DB
PracticeTheory
Relational Algebra
Relational Model
Relational Calculus
Department of Information Technology 4Data base Technologies (ITB4201)
Where are we going next?
Query Optimization
and Execution
Relational Operators
Files and Access Methods
Buffer Management
Disk Space Management
DB
Practice
SQL
On Deck:
Practical
ways of
evaluating
SQL
Department of Information Technology 5Data base Technologies (ITB4201)
Review – Why do we need Query Languages anyway?
• Two key advantages
– Less work for user asking query
– More opportunities for optimization
• Relational Algebra
– Theoretical foundation for SQL
– Higher level than programming language
• but still must specify steps to get desired result
• Relational Calculus
– Formal foundation for Query-by-Example
– A first-order logic description of desired result
– Only specify desired result, not how to get it
Department of Information Technology 6Data base Technologies (ITB4201)
Additional operations:
•Intersection ()
•Join ( )
•Division ( / )
Relational Algebra Review
sid sname rating age
22 dustin 7 45.0
31 lubber 8 55.5
58 rusty 10 35.0
bid bname color
101 Interlake Blue
102 Interlake Red
103 Clipper Green
104 Marine Red
sid bid day
22 101 10/10/96
58 103 11/12/96
Reserves Sailors Boats
Basic operations:
•Selection ( σ )
•Projection ( π )
•Cross-product (  )
•Set-difference ( — )
•Union (  )
:tuples in both relations.
:like  but only keep tuples where common fields are equal.
:tuples from relation 1 with matches in relation 2
: gives a subset of rows.
: deletes unwanted columns.
: combine two relations.
: tuples in relation 1, but not 2
: tuples in relation 1 and 2.
Query Optimization
and Execution
Relational Operators
Files and Access Methods
Buffer Management
Disk Space Management
DB
Prediction: These
relational operators are
going to look hauntingly
familiar when we get to
them…!
Department of Information Technology 7Data base Technologies (ITB4201)
Additional operations:
•Intersection ()
•Join ( )
•Division ( / )
Relational Algebra Review
sid sname rating age
22 dustin 7 45.0
31 lubber 8 55.5
58 rusty 10 35.0
bid bname color
101 Interlake Blue
102 Interlake Red
103 Clipper Green
104 Marine Red
sid bid day
22 101 10/10/96
58 103 11/12/96
Reserves Sailors Boats
Basic operations:
•Selection ( σ )
•Projection ( π )
•Cross-product (  )
•Set-difference ( — )
•Union (  )
Find names of sailors who’ve reserved a green boat
σ( color=‘Green’Boats)( Sailors)π( sname )( Reserves)
Department of Information Technology 8Data base Technologies (ITB4201)
Relational Algebra Review
sid sname rating age
22 dustin 7 45.0
31 lubber 8 55.5
58 rusty 10 35.0
bid bname color
101 Interlake Blue
102 Interlake Red
103 Clipper Green
104 Marine Red
sid bid day
22 101 10/10/96
58 103 11/12/96
Reserves Sailors Boats
Find names of sailors who’ve reserved a green boat
Given the previous algebra, a query optimizer would replace it with this!
σ( color=‘Green’Boats)
( Sailors)
π( sname )
( Reserves)
π( bid )
π( sid )
Or better yet:
Department of Information Technology 9Data base Technologies (ITB4201)
Relational Calculus
• High-level, first-order logic description
– A formal definition of what you want from the database
• e.g. English:
“Find all sailors with a rating above 7”
In Calculus:
{S |S  Sailors  S.rating > 7}
“From all that is, find me the set of things that are tuples in the Sailors relation and whose rating field is
greater than 7.”
• Two flavors:
– Tuple relational calculus (TRC) (Like SQL)
– Domain relational calculus (DRC) (Like QBE)
Department of Information Technology 10Data base Technologies (ITB4201)
Relational Calculus Building Blocks
• Variables
TRC: Variables are bound to tuples.
DRC: Variables are bound to domain elements (= column values)
• Constants
7, “Foo”, 3.14159, etc.
• Comparison operators
=, <>, <, >, etc.
• Logical connectives
 - not
 – and
 - or
- implies
 - is a member of
• Quantifiers
X(p(X)): For every X, p(X) must be true
X(p(X)): There exists at least one X such that p(X) is true
Department of Information Technology 11Data base Technologies (ITB4201)
Relational Calculus
• English example: Find all sailors with a rating
above 7
– Tuple R.C.:
{S |S Sailors  S.rating > 7}
“From all that is, find me the set of things that are tuples in the Sailors relation
and whose rating field is greater than 7.”
– Domain R.C.:
{<S,N,R,A>| <S,N,R,A> Sailors  R > 7}
“From all that is, find me column values S, N, R, and A, where S is an integer,
N is a string, R is an integer, A is a floating point number, such that <S, N, R,
A> is a tuple in the Sailors relation and R is greater than 7.”
sid sname rating age
28 yuppy 9 35.0
31 lubber 8 55.5
44 guppy 5 35.0
58 rusty 10 35.0
Department of Information Technology 12Data base Technologies (ITB4201)
Tuple Relational Calculus
• Query form: {T | p(T)}
– T is a tuple and p(T) denotes a formula in which tuple variable T
appears.
• Answer:
– set of all tuples T for which the formula p(T) evaluates to true.
• Formula is recursively defined:
– Atomic formulas get tuples from relations or compare values
– Formulas built from other formulas using logical operators.
Department of Information Technology 13Data base Technologies (ITB4201)
• An atomic formula is one of the following:
R  Rel
R.a op S.b
R.a op constant, where
op is one of
• A formula can be:
– an atomic formula
– where p and q are formulas
– where variable R is a tuple variable
– where variable R is a tuple variable
TRC Formulas
     , , , , ,
  p p q p q, ,
))(( RpR
))(( RpR
Department of Information Technology 14Data base Technologies (ITB4201)
Free and Bound Variables
• The use of quantifiers X and X in a formula
is said to bind X in the formula.
– A variable that is not bound is free.
• Important restriction
{T | p(T)}
– The variable T that appears to the left of `|’ must be
the only free variable in the formula p(T).
– In other words, all other tuple variables must be
bound using a quantifier.
Department of Information Technology 15Data base Technologies (ITB4201)
Use of  (For every)
• x (P(x)):
only true if P(x) is true for every x in the universe:
e.g. x ((x.color = “Red”)
means everything that exists is red
• Usually we are less grandiose in our assertions:
x ( (x  Boats)  (x.color = “Red”)
•  is a logical implication
a  b means that if a is true, b must be true
a  b is the same as a  b
Department of Information Technology 16Data base Technologies (ITB4201)
a  b is the same as a  b
• If a is true, b must
be true!
– If a is true and b is
false, the
expression
evaluates to false.
• If a is not true, we
don’t care about b
– The expression is
always true.
a
T
F
T F
b
T
T T
F
Department of Information Technology 17Data base Technologies (ITB4201)
Quantifier Shortcuts
• x ((x  Boats)  (x.color = “Red”))
“For every x in the Boats relation, the color must be Red.”
Can also be written as:
x  Boats(x.color = “Red”)
• x ( (x  Boats)  (x.color = “Red”))
“There exists a tuple x in the Boats relation whose
color is Red.”
Can also be written as:
x  Boats (x.color = “Red”)
Department of Information Technology 18Data base Technologies (ITB4201)
Selection and Projection
• Selection
Find all sailors with rating above 8
{S |S Sailors  S.rating > 8}
{S | S1 Sailors(S1.rating > 8
 S.sname = S1.sname
 S.age = S1.age)}
S is a tuple variable of 2 fields (i.e. {S} is a projection of Sailors)
sid sname rating age
28 yuppy 9 35.0
31 lubber 8 55.5
44 guppy 5 35.0
58 rusty 10 35.0
sname age
• Projection
Find names and ages of sailors with rating above 8.
S
S1
yuppy 35.0
S1
S1
S1
S rusty 35.0
Department of Information Technology 19Data base Technologies (ITB4201)
Note the use of  to find a tuple in Reserves that
`joins with’ the Sailors tuple under consideration.
{S | SSailors  S.rating > 7 
R(RReserves  R.sid = S.sid
 R.bid = 103)}
Joins
Find sailors rated > 7 who’ve reserved
boat #103
sid sname rating age
22 dustin 7 45.0
31 lubber 8 55.5
58 rusty 10 35.0
sid bid day
22 101 10/10/96
58 103 11/12/96
S
S
S
R
R
What if there was another tuple {58, 103, 12/13/96} in the
Reserves relation?
Department of Information Technology 20Data base Technologies (ITB4201)
Joins (continued)
Notice how the parentheses control the scope of each quantifier’s binding.
{S | SSailors  S.rating > 7 
R(RReserves  R.sid = S.sid
 B(BBoats  B.bid = R.bid
 B.color = ‘red’))}
Find sailors rated > 7 who’ve reserved a red boat
What does this expression compute?
Department of Information Technology 21Data base Technologies (ITB4201)
Division
Find all sailors S such that…
A value x in A is disqualified if by attaching a y value from B, we obtain an xy tuple
that is not in A. (e.g: only give me A tuples that have a match in B.
{S | SSailors 
BBoats (RReserves
(S.sid = R.sid
 B.bid = R.bid))}
e.g. Find sailors who’ve reserved all boats:
•Recall the algebra expression A/B…
In calculus, use the  operator:
For all tuples B in Boats…
There is at least one tuple in Reserves…
showing that sailor S has reserved B.
Department of Information Technology 22Data base Technologies (ITB4201)
Unsafe Queries, Expressive Power
•  syntactically correct calculus queries that have an
infinite number of answers! These are unsafe queries.
– e.g.,
– Solution???? Don’t do that!
• Expressive Power (Theorem due to Codd):
– Every query that can be expressed in relational algebra can be
expressed as a safe query in DRC / TRC; the converse is also
true.
• Relational Completeness: Query languages (e.g., SQL) can
express every query that is expressible in relational
algebra/calculus. (actually, SQL is more powerful, as we
will see…)

S|SSailors

















Department of Information Technology 23Data base Technologies (ITB4201)
Relational Completeness means…
Query Optimization
and Execution
Relational Operators
Files and Access Methods
Buffer Management
Disk Space Management
DB
PracticeTheory
Relational Algebra
Relational Model
Relational Calculus
Department of Information Technology 24Data base Technologies (ITB4201)
Now we can study SQL!
Query Optimization
and Execution
Relational Operators
Files and Access Methods
Buffer Management
Disk Space Management
DB
Practice
SQL
Department of Information Technology 25Data base Technologies (ITB4201)
Summary
• The relational model has rigorously defined query languages
that are simple and powerful.
– Algebra and safe calculus have same expressive power
• Relational algebra is more operational
– useful as internal representation for query evaluation plans.
• Relational calculus is more declarative
– users define queries in terms of what they want, not in terms of how to
compute it.
• Almost every query can be expressed several ways
– and that’s what makes query optimization fun!
Department of Information Technology 26Data base Technologies (ITB4201)
Test Yourself
1. Because of the calculus expression, the relational calculus in considered as
a) procedural language
b) non procedural language
c) structural language
d) functional language
2. Relational calculus is:
i. equivalent to relational algebra in its capabilities.
Ii. It is stronger than relational algebra
Iii. It is weaker than relational algebra.
Iv. It is based on predicate calculus of formal logic
a) (i) and (iv) are true
b) (ii) and (iv) are true
c) only (iii) is true
d) (iii) and (iv) are true
3. Which of the following symbol is used in the place of except?
a) ^ b) V c) ¬ d) ~
4. Which of the following is the comparison operator in tuple relational calculus
1.⇒ b) = c) ε d) All of the mentioned
5. In tuple relational calculus P1 → P2 is equivalent to
a)¬P1 ∨ P2
b)¬P1 ∨ P2
c)P1 ∧ P2
d)P1 ∧ ¬P2
Department of Information Technology 27Data base Technologies (ITB4201)
Answers
1. Because of the calculus expression, the relational calculus in considered as
a) procedural language
b) non procedural language
c) structural language
d) functional language
2. Relational calculus is:
i. equivalent to relational algebra in its capabilities.
Ii. It is stronger than relational algebra
Iii. It is weaker than relational algebra.
Iv. It is based on predicate calculus of formal logic
a) (i) and (iv) are true
b) (ii) and (iv) are true
c) only (iii) is true
d) (iii) and (iv) are true
3. Which of the following symbol is used in the place of except?
a) ^ b) V c) ¬ d) ~
4. Which of the following is the comparison operator in tuple relational calculus
1.⇒ b) = c) ε d) All of the mentioned
5. In tuple relational calculus P1 → P2 is equivalent to
a)¬P1 ∨ P2
b)¬P1 ∨ P2
c)P1 ∧ P2
d)P1 ∧ ¬P2

More Related Content

What's hot

Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)yourbookworldanil
 
Data Structure and Algorithms Arrays
Data Structure and Algorithms ArraysData Structure and Algorithms Arrays
Data Structure and Algorithms ArraysManishPrajapati78
 
RECURSIVE DESCENT PARSING
RECURSIVE DESCENT PARSINGRECURSIVE DESCENT PARSING
RECURSIVE DESCENT PARSINGJothi Lakshmi
 
Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureBalwant Gorad
 
Quick sort algorithn
Quick sort algorithnQuick sort algorithn
Quick sort algorithnKumar
 
Normalization PRESENTATION
Normalization PRESENTATIONNormalization PRESENTATION
Normalization PRESENTATIONbit allahabad
 
12. Indexing and Hashing in DBMS
12. Indexing and Hashing in DBMS12. Indexing and Hashing in DBMS
12. Indexing and Hashing in DBMSkoolkampus
 
Database Design
Database DesignDatabase Design
Database Designlearnt
 
Normalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NF
Normalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NFNormalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NF
Normalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NFBiplap Bhattarai
 
Lecture optimal binary search tree
Lecture optimal binary search tree Lecture optimal binary search tree
Lecture optimal binary search tree Divya Ks
 
AI Programming language (LISP)
AI Programming language (LISP)AI Programming language (LISP)
AI Programming language (LISP)SURBHI SAROHA
 
Graphs In Data Structure
Graphs In Data StructureGraphs In Data Structure
Graphs In Data StructureAnuj Modi
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational modelChirag vasava
 
Cost estimation for Query Optimization
Cost estimation for Query OptimizationCost estimation for Query Optimization
Cost estimation for Query OptimizationRavinder Kamboj
 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management SystemMian Abdul Raheem
 

What's hot (20)

Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)
 
Data Structure and Algorithms Arrays
Data Structure and Algorithms ArraysData Structure and Algorithms Arrays
Data Structure and Algorithms Arrays
 
RECURSIVE DESCENT PARSING
RECURSIVE DESCENT PARSINGRECURSIVE DESCENT PARSING
RECURSIVE DESCENT PARSING
 
Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data Structure
 
Ordbms
OrdbmsOrdbms
Ordbms
 
Quick sort algorithn
Quick sort algorithnQuick sort algorithn
Quick sort algorithn
 
Joins in SQL
Joins in SQLJoins in SQL
Joins in SQL
 
Normalization PRESENTATION
Normalization PRESENTATIONNormalization PRESENTATION
Normalization PRESENTATION
 
12. Indexing and Hashing in DBMS
12. Indexing and Hashing in DBMS12. Indexing and Hashing in DBMS
12. Indexing and Hashing in DBMS
 
Database Design
Database DesignDatabase Design
Database Design
 
Normalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NF
Normalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NFNormalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NF
Normalization | (1NF) |(2NF) (3NF)|BCNF| 4NF |5NF
 
Lecture optimal binary search tree
Lecture optimal binary search tree Lecture optimal binary search tree
Lecture optimal binary search tree
 
AI Programming language (LISP)
AI Programming language (LISP)AI Programming language (LISP)
AI Programming language (LISP)
 
SCHEDULING ALGORITHMS
SCHEDULING ALGORITHMSSCHEDULING ALGORITHMS
SCHEDULING ALGORITHMS
 
Graphs In Data Structure
Graphs In Data StructureGraphs In Data Structure
Graphs In Data Structure
 
DBMS Keys
DBMS KeysDBMS Keys
DBMS Keys
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
 
Relational algebra in dbms
Relational algebra in dbmsRelational algebra in dbms
Relational algebra in dbms
 
Cost estimation for Query Optimization
Cost estimation for Query OptimizationCost estimation for Query Optimization
Cost estimation for Query Optimization
 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management System
 

Similar to Relational Calculus

Admission in india 2015
Admission in india 2015Admission in india 2015
Admission in india 2015Edhole.com
 
Relational Algebra
Relational AlgebraRelational Algebra
Relational AlgebraAmin Omi
 
Relational Algebra and Calculus.ppt
Relational Algebra and Calculus.pptRelational Algebra and Calculus.ppt
Relational Algebra and Calculus.pptAnkush138
 
Query Optimization - Brandon Latronica
Query Optimization - Brandon LatronicaQuery Optimization - Brandon Latronica
Query Optimization - Brandon Latronica"FENG "GEORGE"" YU
 
Relational Database and Relational Algebra
Relational Database and Relational AlgebraRelational Database and Relational Algebra
Relational Database and Relational AlgebraPyingkodi Maran
 
Programming in python
Programming in pythonProgramming in python
Programming in pythonIvan Rojas
 
Data Analytics with R and SQL Server
Data Analytics with R and SQL ServerData Analytics with R and SQL Server
Data Analytics with R and SQL ServerStéphane Fréchette
 
Knowledge Discovery Query Language (KDQL)
Knowledge Discovery Query Language (KDQL)Knowledge Discovery Query Language (KDQL)
Knowledge Discovery Query Language (KDQL)Zakaria Zubi
 
Logic
LogicLogic
LogicHamxi
 
CS 542 -- Query Execution
CS 542 -- Query ExecutionCS 542 -- Query Execution
CS 542 -- Query ExecutionJ Singh
 
lecture 41 cost optimization.pptx
lecture 41 cost optimization.pptxlecture 41 cost optimization.pptx
lecture 41 cost optimization.pptxSundaramyadav3
 
Intro to Data warehousing lecture 11
Intro to Data warehousing   lecture 11Intro to Data warehousing   lecture 11
Intro to Data warehousing lecture 11AnwarrChaudary
 
Intro to Data warehousing lecture 14
Intro to Data warehousing   lecture 14Intro to Data warehousing   lecture 14
Intro to Data warehousing lecture 14AnwarrChaudary
 
Intro to Data warehousing lecture 19
Intro to Data warehousing   lecture 19Intro to Data warehousing   lecture 19
Intro to Data warehousing lecture 19AnwarrChaudary
 

Similar to Relational Calculus (20)

Relational algebra
Relational algebraRelational algebra
Relational algebra
 
Admission in india 2015
Admission in india 2015Admission in india 2015
Admission in india 2015
 
Relational Algebra
Relational AlgebraRelational Algebra
Relational Algebra
 
Data structure-question-bank
Data structure-question-bankData structure-question-bank
Data structure-question-bank
 
Relational Algebra and Calculus.ppt
Relational Algebra and Calculus.pptRelational Algebra and Calculus.ppt
Relational Algebra and Calculus.ppt
 
Query Optimization - Brandon Latronica
Query Optimization - Brandon LatronicaQuery Optimization - Brandon Latronica
Query Optimization - Brandon Latronica
 
Relational Database and Relational Algebra
Relational Database and Relational AlgebraRelational Database and Relational Algebra
Relational Database and Relational Algebra
 
Programming in python
Programming in pythonProgramming in python
Programming in python
 
R Language Introduction
R Language IntroductionR Language Introduction
R Language Introduction
 
8 query
8 query8 query
8 query
 
Data Analytics with R and SQL Server
Data Analytics with R and SQL ServerData Analytics with R and SQL Server
Data Analytics with R and SQL Server
 
Knowledge Discovery Query Language (KDQL)
Knowledge Discovery Query Language (KDQL)Knowledge Discovery Query Language (KDQL)
Knowledge Discovery Query Language (KDQL)
 
Logic
LogicLogic
Logic
 
Algebra
AlgebraAlgebra
Algebra
 
Realtime Analytics
Realtime AnalyticsRealtime Analytics
Realtime Analytics
 
CS 542 -- Query Execution
CS 542 -- Query ExecutionCS 542 -- Query Execution
CS 542 -- Query Execution
 
lecture 41 cost optimization.pptx
lecture 41 cost optimization.pptxlecture 41 cost optimization.pptx
lecture 41 cost optimization.pptx
 
Intro to Data warehousing lecture 11
Intro to Data warehousing   lecture 11Intro to Data warehousing   lecture 11
Intro to Data warehousing lecture 11
 
Intro to Data warehousing lecture 14
Intro to Data warehousing   lecture 14Intro to Data warehousing   lecture 14
Intro to Data warehousing lecture 14
 
Intro to Data warehousing lecture 19
Intro to Data warehousing   lecture 19Intro to Data warehousing   lecture 19
Intro to Data warehousing lecture 19
 

More from Dr. C.V. Suresh Babu (20)

Data analytics with R
Data analytics with RData analytics with R
Data analytics with R
 
Association rules
Association rulesAssociation rules
Association rules
 
Clustering
ClusteringClustering
Clustering
 
Classification
ClassificationClassification
Classification
 
Blue property assumptions.
Blue property assumptions.Blue property assumptions.
Blue property assumptions.
 
Introduction to regression
Introduction to regressionIntroduction to regression
Introduction to regression
 
DART
DARTDART
DART
 
Mycin
MycinMycin
Mycin
 
Expert systems
Expert systemsExpert systems
Expert systems
 
Dempster shafer theory
Dempster shafer theoryDempster shafer theory
Dempster shafer theory
 
Bayes network
Bayes networkBayes network
Bayes network
 
Bayes' theorem
Bayes' theoremBayes' theorem
Bayes' theorem
 
Knowledge based agents
Knowledge based agentsKnowledge based agents
Knowledge based agents
 
Rule based system
Rule based systemRule based system
Rule based system
 
Formal Logic in AI
Formal Logic in AIFormal Logic in AI
Formal Logic in AI
 
Production based system
Production based systemProduction based system
Production based system
 
Game playing in AI
Game playing in AIGame playing in AI
Game playing in AI
 
Diagnosis test of diabetics and hypertension by AI
Diagnosis test of diabetics and hypertension by AIDiagnosis test of diabetics and hypertension by AI
Diagnosis test of diabetics and hypertension by AI
 
A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”
 
A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”
 

Recently uploaded

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 

Recently uploaded (20)

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 

Relational Calculus

  • 1. Department of Information Technology 1Data base Technologies (ITB4201) Introduction to Relational Calculus Dr. C.V. Suresh Babu Professor Department of IT Hindustan Institute of Science & Technology
  • 2. Department of Information Technology 2Data base Technologies (ITB4201) Discussion Topics • DBMS Architecture • Relational Algebra Review • Relational calculus • Relational calculus building blocks • Tuple relational calculus • Tuple relational calculus Formulas • Quiz
  • 3. Department of Information Technology 3Data base Technologies (ITB4201) DBMS Architecture How does a SQL engine work ? • SQL query  relational algebra plan • Relational algebra plan  Optimized plan • Execute each operator of the plan Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB PracticeTheory Relational Algebra Relational Model Relational Calculus
  • 4. Department of Information Technology 4Data base Technologies (ITB4201) Where are we going next? Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB Practice SQL On Deck: Practical ways of evaluating SQL
  • 5. Department of Information Technology 5Data base Technologies (ITB4201) Review – Why do we need Query Languages anyway? • Two key advantages – Less work for user asking query – More opportunities for optimization • Relational Algebra – Theoretical foundation for SQL – Higher level than programming language • but still must specify steps to get desired result • Relational Calculus – Formal foundation for Query-by-Example – A first-order logic description of desired result – Only specify desired result, not how to get it
  • 6. Department of Information Technology 6Data base Technologies (ITB4201) Additional operations: •Intersection () •Join ( ) •Division ( / ) Relational Algebra Review sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 bid bname color 101 Interlake Blue 102 Interlake Red 103 Clipper Green 104 Marine Red sid bid day 22 101 10/10/96 58 103 11/12/96 Reserves Sailors Boats Basic operations: •Selection ( σ ) •Projection ( π ) •Cross-product (  ) •Set-difference ( — ) •Union (  ) :tuples in both relations. :like  but only keep tuples where common fields are equal. :tuples from relation 1 with matches in relation 2 : gives a subset of rows. : deletes unwanted columns. : combine two relations. : tuples in relation 1, but not 2 : tuples in relation 1 and 2. Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB Prediction: These relational operators are going to look hauntingly familiar when we get to them…!
  • 7. Department of Information Technology 7Data base Technologies (ITB4201) Additional operations: •Intersection () •Join ( ) •Division ( / ) Relational Algebra Review sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 bid bname color 101 Interlake Blue 102 Interlake Red 103 Clipper Green 104 Marine Red sid bid day 22 101 10/10/96 58 103 11/12/96 Reserves Sailors Boats Basic operations: •Selection ( σ ) •Projection ( π ) •Cross-product (  ) •Set-difference ( — ) •Union (  ) Find names of sailors who’ve reserved a green boat σ( color=‘Green’Boats)( Sailors)π( sname )( Reserves)
  • 8. Department of Information Technology 8Data base Technologies (ITB4201) Relational Algebra Review sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 bid bname color 101 Interlake Blue 102 Interlake Red 103 Clipper Green 104 Marine Red sid bid day 22 101 10/10/96 58 103 11/12/96 Reserves Sailors Boats Find names of sailors who’ve reserved a green boat Given the previous algebra, a query optimizer would replace it with this! σ( color=‘Green’Boats) ( Sailors) π( sname ) ( Reserves) π( bid ) π( sid ) Or better yet:
  • 9. Department of Information Technology 9Data base Technologies (ITB4201) Relational Calculus • High-level, first-order logic description – A formal definition of what you want from the database • e.g. English: “Find all sailors with a rating above 7” In Calculus: {S |S  Sailors  S.rating > 7} “From all that is, find me the set of things that are tuples in the Sailors relation and whose rating field is greater than 7.” • Two flavors: – Tuple relational calculus (TRC) (Like SQL) – Domain relational calculus (DRC) (Like QBE)
  • 10. Department of Information Technology 10Data base Technologies (ITB4201) Relational Calculus Building Blocks • Variables TRC: Variables are bound to tuples. DRC: Variables are bound to domain elements (= column values) • Constants 7, “Foo”, 3.14159, etc. • Comparison operators =, <>, <, >, etc. • Logical connectives  - not  – and  - or - implies  - is a member of • Quantifiers X(p(X)): For every X, p(X) must be true X(p(X)): There exists at least one X such that p(X) is true
  • 11. Department of Information Technology 11Data base Technologies (ITB4201) Relational Calculus • English example: Find all sailors with a rating above 7 – Tuple R.C.: {S |S Sailors  S.rating > 7} “From all that is, find me the set of things that are tuples in the Sailors relation and whose rating field is greater than 7.” – Domain R.C.: {<S,N,R,A>| <S,N,R,A> Sailors  R > 7} “From all that is, find me column values S, N, R, and A, where S is an integer, N is a string, R is an integer, A is a floating point number, such that <S, N, R, A> is a tuple in the Sailors relation and R is greater than 7.” sid sname rating age 28 yuppy 9 35.0 31 lubber 8 55.5 44 guppy 5 35.0 58 rusty 10 35.0
  • 12. Department of Information Technology 12Data base Technologies (ITB4201) Tuple Relational Calculus • Query form: {T | p(T)} – T is a tuple and p(T) denotes a formula in which tuple variable T appears. • Answer: – set of all tuples T for which the formula p(T) evaluates to true. • Formula is recursively defined: – Atomic formulas get tuples from relations or compare values – Formulas built from other formulas using logical operators.
  • 13. Department of Information Technology 13Data base Technologies (ITB4201) • An atomic formula is one of the following: R  Rel R.a op S.b R.a op constant, where op is one of • A formula can be: – an atomic formula – where p and q are formulas – where variable R is a tuple variable – where variable R is a tuple variable TRC Formulas      , , , , ,   p p q p q, , ))(( RpR ))(( RpR
  • 14. Department of Information Technology 14Data base Technologies (ITB4201) Free and Bound Variables • The use of quantifiers X and X in a formula is said to bind X in the formula. – A variable that is not bound is free. • Important restriction {T | p(T)} – The variable T that appears to the left of `|’ must be the only free variable in the formula p(T). – In other words, all other tuple variables must be bound using a quantifier.
  • 15. Department of Information Technology 15Data base Technologies (ITB4201) Use of  (For every) • x (P(x)): only true if P(x) is true for every x in the universe: e.g. x ((x.color = “Red”) means everything that exists is red • Usually we are less grandiose in our assertions: x ( (x  Boats)  (x.color = “Red”) •  is a logical implication a  b means that if a is true, b must be true a  b is the same as a  b
  • 16. Department of Information Technology 16Data base Technologies (ITB4201) a  b is the same as a  b • If a is true, b must be true! – If a is true and b is false, the expression evaluates to false. • If a is not true, we don’t care about b – The expression is always true. a T F T F b T T T F
  • 17. Department of Information Technology 17Data base Technologies (ITB4201) Quantifier Shortcuts • x ((x  Boats)  (x.color = “Red”)) “For every x in the Boats relation, the color must be Red.” Can also be written as: x  Boats(x.color = “Red”) • x ( (x  Boats)  (x.color = “Red”)) “There exists a tuple x in the Boats relation whose color is Red.” Can also be written as: x  Boats (x.color = “Red”)
  • 18. Department of Information Technology 18Data base Technologies (ITB4201) Selection and Projection • Selection Find all sailors with rating above 8 {S |S Sailors  S.rating > 8} {S | S1 Sailors(S1.rating > 8  S.sname = S1.sname  S.age = S1.age)} S is a tuple variable of 2 fields (i.e. {S} is a projection of Sailors) sid sname rating age 28 yuppy 9 35.0 31 lubber 8 55.5 44 guppy 5 35.0 58 rusty 10 35.0 sname age • Projection Find names and ages of sailors with rating above 8. S S1 yuppy 35.0 S1 S1 S1 S rusty 35.0
  • 19. Department of Information Technology 19Data base Technologies (ITB4201) Note the use of  to find a tuple in Reserves that `joins with’ the Sailors tuple under consideration. {S | SSailors  S.rating > 7  R(RReserves  R.sid = S.sid  R.bid = 103)} Joins Find sailors rated > 7 who’ve reserved boat #103 sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 sid bid day 22 101 10/10/96 58 103 11/12/96 S S S R R What if there was another tuple {58, 103, 12/13/96} in the Reserves relation?
  • 20. Department of Information Technology 20Data base Technologies (ITB4201) Joins (continued) Notice how the parentheses control the scope of each quantifier’s binding. {S | SSailors  S.rating > 7  R(RReserves  R.sid = S.sid  B(BBoats  B.bid = R.bid  B.color = ‘red’))} Find sailors rated > 7 who’ve reserved a red boat What does this expression compute?
  • 21. Department of Information Technology 21Data base Technologies (ITB4201) Division Find all sailors S such that… A value x in A is disqualified if by attaching a y value from B, we obtain an xy tuple that is not in A. (e.g: only give me A tuples that have a match in B. {S | SSailors  BBoats (RReserves (S.sid = R.sid  B.bid = R.bid))} e.g. Find sailors who’ve reserved all boats: •Recall the algebra expression A/B… In calculus, use the  operator: For all tuples B in Boats… There is at least one tuple in Reserves… showing that sailor S has reserved B.
  • 22. Department of Information Technology 22Data base Technologies (ITB4201) Unsafe Queries, Expressive Power •  syntactically correct calculus queries that have an infinite number of answers! These are unsafe queries. – e.g., – Solution???? Don’t do that! • Expressive Power (Theorem due to Codd): – Every query that can be expressed in relational algebra can be expressed as a safe query in DRC / TRC; the converse is also true. • Relational Completeness: Query languages (e.g., SQL) can express every query that is expressible in relational algebra/calculus. (actually, SQL is more powerful, as we will see…)  S|SSailors                 
  • 23. Department of Information Technology 23Data base Technologies (ITB4201) Relational Completeness means… Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB PracticeTheory Relational Algebra Relational Model Relational Calculus
  • 24. Department of Information Technology 24Data base Technologies (ITB4201) Now we can study SQL! Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB Practice SQL
  • 25. Department of Information Technology 25Data base Technologies (ITB4201) Summary • The relational model has rigorously defined query languages that are simple and powerful. – Algebra and safe calculus have same expressive power • Relational algebra is more operational – useful as internal representation for query evaluation plans. • Relational calculus is more declarative – users define queries in terms of what they want, not in terms of how to compute it. • Almost every query can be expressed several ways – and that’s what makes query optimization fun!
  • 26. Department of Information Technology 26Data base Technologies (ITB4201) Test Yourself 1. Because of the calculus expression, the relational calculus in considered as a) procedural language b) non procedural language c) structural language d) functional language 2. Relational calculus is: i. equivalent to relational algebra in its capabilities. Ii. It is stronger than relational algebra Iii. It is weaker than relational algebra. Iv. It is based on predicate calculus of formal logic a) (i) and (iv) are true b) (ii) and (iv) are true c) only (iii) is true d) (iii) and (iv) are true 3. Which of the following symbol is used in the place of except? a) ^ b) V c) ¬ d) ~ 4. Which of the following is the comparison operator in tuple relational calculus 1.⇒ b) = c) ε d) All of the mentioned 5. In tuple relational calculus P1 → P2 is equivalent to a)¬P1 ∨ P2 b)¬P1 ∨ P2 c)P1 ∧ P2 d)P1 ∧ ¬P2
  • 27. Department of Information Technology 27Data base Technologies (ITB4201) Answers 1. Because of the calculus expression, the relational calculus in considered as a) procedural language b) non procedural language c) structural language d) functional language 2. Relational calculus is: i. equivalent to relational algebra in its capabilities. Ii. It is stronger than relational algebra Iii. It is weaker than relational algebra. Iv. It is based on predicate calculus of formal logic a) (i) and (iv) are true b) (ii) and (iv) are true c) only (iii) is true d) (iii) and (iv) are true 3. Which of the following symbol is used in the place of except? a) ^ b) V c) ¬ d) ~ 4. Which of the following is the comparison operator in tuple relational calculus 1.⇒ b) = c) ε d) All of the mentioned 5. In tuple relational calculus P1 → P2 is equivalent to a)¬P1 ∨ P2 b)¬P1 ∨ P2 c)P1 ∧ P2 d)P1 ∧ ¬P2