ShubhamTiwari907077
19 views
18 slides
Aug 29, 2024
Slide 1 of 18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
About This Presentation
Database management system: Relational Algebra
Various aspects or operations of relational algebra in dbms
Through this presentation you can easily understand the in depth with various examples
Size: 247.9 KB
Language: en
Added: Aug 29, 2024
Slides: 18 pages
Slide Content
DBMS
Relational Query Language Query language can be categorized as either procedural and non procedural. Procedural language: The user interacts the system to perform a sequence of operations on the database to compute the desired result. Non-Procedural language: the user describes the desired information without giving a specific procedure for obtaining that information.
Relational Algebra All procedural relational query languages provide a set of operations that can be applied to either a single relation or a pair of relations. These operations consistently produce a single relation as their result. It gives a step by step process to obtain the result of the query. It uses operators to perform queries.
Types of Relational Operations Select Operation Project Operation Union Operation Set Intersection Set Difference Cartesian Product Rename
Select Operation The select Operation selects a tuple that satisfy a given condition. It is denoted by sigma( ). Notation: p(r) r is used for relation p is used for writing condition which may have connectors like: AND, OR and NOT. These relational can use a relational operators like
Project Operation This operation shows the list of those attributes that we wish to appear in the result. Rest of the attributes are eliminated from the table. It is denoted by . Notation: A1,A2,A3 ,…. Is used as an attribute name of relation r .
Example: CUSTOMER relation Name Street City Jones Main Harrison Smith North Rye Hays Main Harrison Brooks Senator Brooklyn Input Name, City(CUSTOMER) Name City Jones Harrison Smith Rye Hays Harrison Brooks Brooklyn
Union Operation Suppose there are two relations R and S. The union operation contains all the tuples that are either in R and S or both in R and S. It eliminates the duplicate tuples. It is denoted by . Notation: R S A union operation must hold the following condition: R and S must have the attribute of the same number. Duplicate tuples are eliminated automatically.
Customer_name Acc_no Johnson A-101 Smith A-121 Mayes A-321 Johnson A-273 Jones A-472 BORROW Relation Customer_name Acc_no Jones L-17 Smith L-23 Hayes L-15 Curry L-93 Jackson L-14 DEPOSITOR Relation
Input: Customer_name (BORROW) Customer_name ( DEPOSITOR) Customer_name Johnson Smith Mayes Jones Hayes Curry Jackson
Set Intersection Suppose there are two relations R and S. The set intersection operation contains all tuples that are in both R and S. It is denoted by intersection ( or ). Notation: R S Input: Customer_name (BORROW) Customer_name (DEPOSITOR) Output: Customer_name Smith Jones
Set Difference The set difference operation contains all tuples that are in R but not in S. It is denoted by minus ( -). Notation: R-S Input: Customer_name (BORROW) Customer_name (DEPOSITOR) Customer_name Hayes Curry Jackson
Cartesian Product The cartesian product is used to combine each row in one table with each row in the other table. It is also known as a cross product . It is denoted by X. Notation: E X D Emp_ID Emp_Name Emp_Dept 1 Smith A 2 Harry C 3 John B Dept_no Dept_Name A Marketing B Sales C Legal Department Employee
Input: EMPLOYEE X DEPARTMENT Emp_ID Emp_Name Emp_Dept Dept_No Dept_Name 1 Smith A A Marketing 1 Smith A B Sales 1 Smith A C Legal 2 Harry C A Marketing 2 Harry C B Sales 2 Harry C C Legal 3 John B A Marketing 3 John B B Sales 3 John B C Legal
Rename Operation It is used to assign a new name to a relation and is denoted by ρ (rho). Types Three following types of renaming can be done: Renaming a relation Renaming an attribute Renaming both
Rename a relation Suppose we have a relation named 𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠 Students and we want to change it to 𝐹𝑖𝑛𝑎𝑙𝑌𝑟𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠 , the rename operation works as follows: 𝜌𝐹𝑖𝑛𝑎𝑙𝑌𝑟𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠 (𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠) Rename an attribute Suppose we have a relation named Students and we want to change its attributes 𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝐼𝐷 , 𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑁𝑎𝑚𝑒 to 𝑆𝐼𝐷 and 𝑆𝑁𝑎𝑚𝑒 , the rename operation works as follows: 𝜌(𝑆𝐼𝐷,𝑆𝑁𝑎𝑚𝑒) (𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠)
Rename both Next, we'll change both the relation name and attributes of the 𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠 Students class: 𝜌𝐹𝑖𝑛𝑎𝑙𝑌𝑟𝑆𝑡𝑢𝑑𝑒𝑛𝑡𝑠(𝑆𝐼𝐷,𝑆𝑁𝑎𝑚𝑒) (S𝑡𝑢𝑑𝑒𝑛𝑡𝑠)