SlideShare a Scribd company logo
1 of 56
•Two formal language for the relational model
• Basic set of operation for the relational model.
• These operation enable a user to specify basic retrieval requests.
• The result of a retrieval is a new relation, which can be further
manipulated using operations of same algebra.
•it is important for several reasons:
 provides formal foundation for relational
model
 used as basis for implementing and
optimizing queries in RDMS
No commercial RDBMS in use today
provides an interface for the relational
queries.
•Relational algebra operations can be divided into

UNION
INTERSECTION
SET DIFFERENCE
CARTESIAN PRODUCT

SELECT
PROJECT
JOIN etc.
:Operate on a single relation
It select certain rows
Syntax :
<selection condition>

(R)

<selection condition> is made up of number of clauses of the form
<attribute name > <comparison op> <attribute name>
OR
<attribute name > <comparison op> <constant value>

{ =,<,>,<=,>=,!= }
Lets try. . .
Ex :

(DNO=4 )

(EMPLOYEE)

Ex :

(SALARY>25000)

(EMPLOYEE)
Clauses can be connected by the
Boolean operators and, or ,not to from a
general selection condition.
(DNO=4 AND SALARY>25000) OR (DNO=5 AND SALARY>30000)

Answer?????

(EMPLOYEE)
SELECT operation is commutative :
<cond1>

(

<cond2>

(R)) =

<cond2>

(

<cond1>

Cascade of SELECT operation:

<cond1>

(

<cond2>

(… (

<condn>

(R)). . . ))

=
(

<cond1> AND <cond2> AND . . . AND <condn>

(R)

(R))
It select certain columns
Syntax :
<attribute list >

(R)

Duplicate elimination : it removes any duplicate
tuples , and we get a valid relation .
What is the
resultant table ???

•
•

SEX, SALARY(EMPLOYEE)
,Lname,Fname,SALARY(EMPLOYEE)
Duplicate
elimination

I WANT ANSWERS. .
NOT QUESTIONS.
FNAME, LNAME, SALARY( DNO=5(EMPLOYEE))
We can write the operations as a single algebra
expression by nesting the operation
or
we can apply one operation at a time and create
intermediate result relations.
FNAME, LNAME, SALARY( DNO=5(EMPLOYEE))

Can replace with

DEPCS2 
RESULT 

DNO=5(EMPLOYEE)
FNAME, LNAME, SALARY

(DEPCS2)
Renaming of attribute
TEMP  DNO=5(EMPLOYEE)
R(FIRSTNAME,LASTNAME,SALARY)

FNAME, LNAME, SALARY

(TEMP)
A formal RENAME (rho) operations:
• rename either relation name, attribute name or both

s (R)
(B1,B2,…Bn)

S: new table name;
Bn: new attribute name

(R)
s(B1,B2,…Bn)

(R)
:R S
: Include all tuples
:Duplicates are eliminated
:R S
: include all tuples that are in both R & S

:R S
: include all tuples that are in R but not in S
Example:

Union compatible
• same degree
• corresponding pair have same number
Q. Retrieve the social security Number of
all employees who either work in
department 5 or directly supervise an
employee who works department 5.
•UNION and INTERSECTION are
commutative but SET
DIFFERENCE is not.

R

S =R

S – (R-S )-(S-R)
• Also known as CROSS PRODUCT or CROSS JOIN
• Denoted by X
• syntax :
• tab1 X tab2
• also binary set operations.
• if A has m tuples and B has n tuples then A X B has m * n
tuples .
• Cartesian product followed by SELECT is used to identify
and select related tuples from two relation.
EMP_ID

DESIGNATION

SALARY

101

PROFESSOR

1.25000

102

ASSOCIATE PROF

90000

103

ASSISTANT PROF

40000

TAB1

E_ID

F_NAME

M_NA
ME

L_NAME

AGE

102

SURESH

KUMAR

S

43

103

SUMI

M

MOL

23

101

SHREELEKSHMI

R

S

40

FIND salary ,name AND designation OF EACH EMPLOYEE?????
DESIGNATION

SALAR
Y

EMP_ID

E_ID

F_NAME

M_NAME L_NAME

AGE

PROFESSOR

1.2500
0

101

102

SURESH

KUMAR

S

43

PROFESSOR

1.2500
0

101

103

SUMI

M

MOL

23

PROFESSOR

1.2500
0

101

101

SHREELEK R
SHMI

S

40

ASSOCIATE
PROF

90000

102

102

SURESH

KUMAR

S

43

ASSOCIATE
PROF

90000

102

103

SUMI

M

MOL

23

ASSOCIATE
PROF

90000

102

101

SHREELEK R
SHMI

S

40

ASSISTANT
PROF

40000

103

102

SURESH

KUMAR

S

43

ASSISTANT
PROF

40000

103

103

SUMI

M

MOL

23

ASSISTANT
PROF

40000

103

101

SHREELEK R
SHMI

S

40
DESIGNATI SALARY
ON

EMP_ID

E_ID

F_NAME

PROFESSO
R

101

101

SHREELEK R
SHMI

S

40

ASSOCIATE 90000
PROF

102

102

ANIL

S

GANESH

28

ASSISTANT
PROF

103

103

SUMI

M

MOL

23

1.25000

40000

M_NAME L_NAME

AGE

SALARY

F_NAME

M_NAME

L_NAME

DESIGNATION

1.25000

RAMESH

R

VINOD

PROFESSOR

90000

ANIL

S

GANESH

ASSOCIATE PROF

40000

SUNIL

A

NARAYAN

ASSISTANT PROF
Write relational algebra expression
Retrieve a list of names of each
employee’s dependents.
• Combine related tuples from two relation into single
tuples.
• denoted by
•R
<JOIN CONDITION> S .
• Consider previous example
RESULT EMPLOYEE X DEPENDENT
FINAL  SSN= ESSN (RESULT)

The above can be replaced with
FINAL

EMPLOYEE

SSN=ESSN

DEPENDENT .
Retrieve the name of manager of
each department
•A

general join condition is of the form
<condition>AND<condition>AND. . . AND <condition>
Each condition of the form
Ai

ᶱ
Bi

Comparison operator {=,!=,<,>,<=,>=}

•A JOIN operation with such a
general join condition is
called a THETA JOIN
• The JOIN where the only comparison operator
used is ‘ = ‘

• It requires that two JOIN attributes have the same
name in both relation .
• if this is not the case then renaming operation done
first.
• This is basically an EQUIJOIN followed by removal of
unnecessary attributes
•Ex: DEPT_LOCS DEPARTMENT * DEPT_LOCATIONS.
Join attribute
•A JOIN operation used to combine
data from multiple relations so that
related information can be presented
in a single table. This operations are
also known as inner joins.
•Denoted by
R S
YEAR

TOUR_PART_EM_ID

2003

1001

2004

1001

2013

1001

2008

1004

2009

1003

2008

1003

2004

1004

2011

1004

2003

1004

2003

1002

EMP_id

NAME

ADDRESS

2004

1002

1001

SURESH

AAAA

2011

1002

1002

LALAN

BBBB

2013

1002

1003

JC

CCCC

2012

1002

1004

ANVAR

DDDD

Retrieve the name &
address of employees who
participated in all tour that
‘Suresh ‘sir attended .
Retrieve the names of employees who work on all
the project that ‘John Smith’ works on
• allowing functions of attributes to be
included in the projection
•EX:
• SALARY-DEDUCTION, SALARY * 0.25( DNO=5(EMPLOYEE))
• SUM
•AVERAGE
•MAXIMUM
•MINIMUM
•COUNT

Calligraphic G

•Aggregate function operation using the symbol

<grouping attribute>

<function list>

(R)
R(DNO,NO_OF_EMPLOYEES,AVERAGE_SAL)

COUNT ssn, AVERAGE salary(EMPLOYEE))

(EMPLOYEE)
COUNT ssn, AVERAGE salary(EMPLOYEE)

b. Dno
c.

(Dno

COUNT ssn, AVERAGE salary
• Used when we want to keep all the tuples in R
• three main variation are
• LEFT OUTER JOIN
• RIGHT OUTER JOIN
• FULL OUTER JOIN
• Relation instructor1
name

ID

Sreejith
Suresh
Sreeja

10101
12121
15151

dept_name
Comp. Sci.
Applied
PED

• Relation teaches1
ID
10101
12121
76766

course_id
CS-101
APL-101
BIO-101
• Join
instructor
ID
10101
12121

teaches
name
Sreejith
Suresh

dept_name
Comp. Sci.
Applied

course_id
CS-101
APL-201
name

ID
10101
12121
15151

Sreejith
Suresh
Sreeja

dept_name
Comp. Sci.
Applied
PED

ID
10101
12121
76766

CS-101
APL-101
BIO-101

 Left Outer Join

instructor
ID
10101
12121
15151

teaches

name
Sreejith
Suresh
Sreeja

course_id

dept_name

course_id

Comp. Sci.
Applied
PED

CS-101
APL-201
null
name

ID
10101
12121
15151

Sreejith
Suresh
Sreeja

dept_name
Comp. Sci.
Applied
PED

ID
10101
12121
76766

course_id
CS-101
APL-101
BIO-101

 Right Outer Join

instructor

teaches
ID

10101
12121
76766

name
Sreejith
Suresh
null

dept_name

course_id

Comp. Sci.
Applied
null

CS-101
APL-201
BIO-101
name

ID

dept_name

Sreejith
Suresh
Sreeja

10101
12121
15151

Comp. Sci.
Applied
PED

ID

10101
12121
76766

CS-101
APL-101
BIO-101

 Full Outer Join

instructor

teaches
ID

10101
12121
15151
76766

name
Sreejith
Suresh
Sreeja
null

course_id

dept_name

course_id

Comp. Sci.
Applied
PED
null

CS-101
APL-201
null
BIO-101
Additional
• semi join
• left semi join.
• Right semi join:
Rno

Name

AGE

R_no

Phone

1

Mahati

40

1

9865321245

2

Manjusha

42

3

9764316598

3

Meenu

38

5

9598946532
Rno

Name

AGE

1

Mahati

40

3

Meenu

38

•left semi join.
• Right semi join:
R_no

Phone

1

9865321245

3

9764316598
Relational algebr

More Related Content

What's hot

Relational Algebra & Calculus
Relational Algebra & CalculusRelational Algebra & Calculus
Relational Algebra & CalculusAbdullah Khosa
 
Lecture 06 relational algebra and calculus
Lecture 06 relational algebra and calculusLecture 06 relational algebra and calculus
Lecture 06 relational algebra and calculusemailharmeet
 
E212d9a797dbms chapter3 b.sc2
E212d9a797dbms chapter3 b.sc2E212d9a797dbms chapter3 b.sc2
E212d9a797dbms chapter3 b.sc2Mukund Trivedi
 
E212d9a797dbms chapter3 b.sc2 (1)
E212d9a797dbms chapter3 b.sc2 (1)E212d9a797dbms chapter3 b.sc2 (1)
E212d9a797dbms chapter3 b.sc2 (1)Mukund Trivedi
 
Relational algebra calculus
Relational algebra  calculusRelational algebra  calculus
Relational algebra calculusVaibhav Kathuria
 
Relational algebra
Relational algebraRelational algebra
Relational algebrashynajain
 
Relational algebra.pptx
Relational algebra.pptxRelational algebra.pptx
Relational algebra.pptxRUpaliLohar
 
Basic SQL Statments
Basic SQL StatmentsBasic SQL Statments
Basic SQL StatmentsUmair Shakir
 
Chapter 2 Relational Data Model-part 2
Chapter 2 Relational Data Model-part 2Chapter 2 Relational Data Model-part 2
Chapter 2 Relational Data Model-part 2Eddyzulham Mahluzydde
 
Database normalization
Database normalizationDatabase normalization
Database normalizationEdward Blurock
 
Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)yourbookworldanil
 
Chapter-7 Relational Calculus
Chapter-7 Relational CalculusChapter-7 Relational Calculus
Chapter-7 Relational CalculusKunal Anand
 
Dbms ii mca-ch4-relational model-2013
Dbms ii mca-ch4-relational model-2013Dbms ii mca-ch4-relational model-2013
Dbms ii mca-ch4-relational model-2013Prosanta Ghosh
 
Chapter 2 Relational Data Model-part 3
Chapter 2 Relational Data Model-part 3Chapter 2 Relational Data Model-part 3
Chapter 2 Relational Data Model-part 3Eddyzulham Mahluzydde
 

What's hot (19)

Relational Algebra & Calculus
Relational Algebra & CalculusRelational Algebra & Calculus
Relational Algebra & Calculus
 
Relational+algebra (1)
Relational+algebra (1)Relational+algebra (1)
Relational+algebra (1)
 
Lecture 06 relational algebra and calculus
Lecture 06 relational algebra and calculusLecture 06 relational algebra and calculus
Lecture 06 relational algebra and calculus
 
E212d9a797dbms chapter3 b.sc2
E212d9a797dbms chapter3 b.sc2E212d9a797dbms chapter3 b.sc2
E212d9a797dbms chapter3 b.sc2
 
E212d9a797dbms chapter3 b.sc2 (1)
E212d9a797dbms chapter3 b.sc2 (1)E212d9a797dbms chapter3 b.sc2 (1)
E212d9a797dbms chapter3 b.sc2 (1)
 
Relational algebra calculus
Relational algebra  calculusRelational algebra  calculus
Relational algebra calculus
 
Relational algebra
Relational algebraRelational algebra
Relational algebra
 
Ra Revision
Ra RevisionRa Revision
Ra Revision
 
Relational algebra.pptx
Relational algebra.pptxRelational algebra.pptx
Relational algebra.pptx
 
Basic SQL Statments
Basic SQL StatmentsBasic SQL Statments
Basic SQL Statments
 
Sql2
Sql2Sql2
Sql2
 
Chapter 2 Relational Data Model-part 2
Chapter 2 Relational Data Model-part 2Chapter 2 Relational Data Model-part 2
Chapter 2 Relational Data Model-part 2
 
Database normalization
Database normalizationDatabase normalization
Database normalization
 
Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)Presentation on dbms(relational calculus)
Presentation on dbms(relational calculus)
 
Chapter-7 Relational Calculus
Chapter-7 Relational CalculusChapter-7 Relational Calculus
Chapter-7 Relational Calculus
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
 
Dbms ii mca-ch4-relational model-2013
Dbms ii mca-ch4-relational model-2013Dbms ii mca-ch4-relational model-2013
Dbms ii mca-ch4-relational model-2013
 
Unit04 dbms
Unit04 dbmsUnit04 dbms
Unit04 dbms
 
Chapter 2 Relational Data Model-part 3
Chapter 2 Relational Data Model-part 3Chapter 2 Relational Data Model-part 3
Chapter 2 Relational Data Model-part 3
 

Similar to Relational algebr

Module 2-2.ppt
Module 2-2.pptModule 2-2.ppt
Module 2-2.pptShylaja40
 
E212d9a797dbms chapter3 b.sc2 (2)
E212d9a797dbms chapter3 b.sc2 (2)E212d9a797dbms chapter3 b.sc2 (2)
E212d9a797dbms chapter3 b.sc2 (2)Mukund Trivedi
 
3._Relational_Algebra.pptx:Basics of relation algebra
3._Relational_Algebra.pptx:Basics of relation algebra3._Relational_Algebra.pptx:Basics of relation algebra
3._Relational_Algebra.pptx:Basics of relation algebraZakriyaMalik2
 
Relational Database and Relational Algebra
Relational Database and Relational AlgebraRelational Database and Relational Algebra
Relational Database and Relational AlgebraPyingkodi Maran
 
Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)
Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)
Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)Raj vardhan
 
1695304562_RELATIONAL_ALGEBRA.pdf
1695304562_RELATIONAL_ALGEBRA.pdf1695304562_RELATIONAL_ALGEBRA.pdf
1695304562_RELATIONAL_ALGEBRA.pdfKavinilaa
 
Data Manipulation Language.pptx
Data Manipulation Language.pptxData Manipulation Language.pptx
Data Manipulation Language.pptxEllenGracePorras
 
3.2 SQL to -Relational Algebra.pdf
3.2  SQL to -Relational Algebra.pdf3.2  SQL to -Relational Algebra.pdf
3.2 SQL to -Relational Algebra.pdfMuhammadSaadan2
 
Relational_Algebra_Calculus Operations.pdf
Relational_Algebra_Calculus Operations.pdfRelational_Algebra_Calculus Operations.pdf
Relational_Algebra_Calculus Operations.pdfChristalin Nelson
 
Intro to relational model
Intro to relational modelIntro to relational model
Intro to relational modelATS SBGI MIRAJ
 
Statements,joins and operators in sql by thanveer danish melayi(1)
Statements,joins and operators in sql by thanveer danish melayi(1)Statements,joins and operators in sql by thanveer danish melayi(1)
Statements,joins and operators in sql by thanveer danish melayi(1)Muhammed Thanveer M
 
Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)Vidyasagar Mundroy
 
Relational Algebra and it's Operations pptx
Relational Algebra and it's Operations pptxRelational Algebra and it's Operations pptx
Relational Algebra and it's Operations pptxdanishriasat792
 
Relational Algebra.ppt
Relational Algebra.pptRelational Algebra.ppt
Relational Algebra.pptSreenivas R
 
Unit2 -DBMS.ppt with type of job operation
Unit2 -DBMS.ppt with type of job operationUnit2 -DBMS.ppt with type of job operation
Unit2 -DBMS.ppt with type of job operationshindhe1098cv
 

Similar to Relational algebr (20)

Module 2-2.ppt
Module 2-2.pptModule 2-2.ppt
Module 2-2.ppt
 
E212d9a797dbms chapter3 b.sc2 (2)
E212d9a797dbms chapter3 b.sc2 (2)E212d9a797dbms chapter3 b.sc2 (2)
E212d9a797dbms chapter3 b.sc2 (2)
 
3._Relational_Algebra.pptx:Basics of relation algebra
3._Relational_Algebra.pptx:Basics of relation algebra3._Relational_Algebra.pptx:Basics of relation algebra
3._Relational_Algebra.pptx:Basics of relation algebra
 
Relational Database and Relational Algebra
Relational Database and Relational AlgebraRelational Database and Relational Algebra
Relational Database and Relational Algebra
 
354 ch6
354 ch6354 ch6
354 ch6
 
Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)
Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)
Relational Algebra Ch6 (Navathe 4th edition)/ Ch7 (Navathe 3rd edition)
 
1695304562_RELATIONAL_ALGEBRA.pdf
1695304562_RELATIONAL_ALGEBRA.pdf1695304562_RELATIONAL_ALGEBRA.pdf
1695304562_RELATIONAL_ALGEBRA.pdf
 
Data Manipulation Language.pptx
Data Manipulation Language.pptxData Manipulation Language.pptx
Data Manipulation Language.pptx
 
relAlgebra.ppt
relAlgebra.pptrelAlgebra.ppt
relAlgebra.ppt
 
3.2 SQL to -Relational Algebra.pdf
3.2  SQL to -Relational Algebra.pdf3.2  SQL to -Relational Algebra.pdf
3.2 SQL to -Relational Algebra.pdf
 
Relational_Algebra_Calculus Operations.pdf
Relational_Algebra_Calculus Operations.pdfRelational_Algebra_Calculus Operations.pdf
Relational_Algebra_Calculus Operations.pdf
 
Intro to relational model
Intro to relational modelIntro to relational model
Intro to relational model
 
Statements,joins and operators in sql by thanveer danish melayi(1)
Statements,joins and operators in sql by thanveer danish melayi(1)Statements,joins and operators in sql by thanveer danish melayi(1)
Statements,joins and operators in sql by thanveer danish melayi(1)
 
Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)
 
Relational Algebra and it's Operations pptx
Relational Algebra and it's Operations pptxRelational Algebra and it's Operations pptx
Relational Algebra and it's Operations pptx
 
Relational model
Relational modelRelational model
Relational model
 
Relational Algebra.ppt
Relational Algebra.pptRelational Algebra.ppt
Relational Algebra.ppt
 
Unit2 -DBMS.ppt with type of job operation
Unit2 -DBMS.ppt with type of job operationUnit2 -DBMS.ppt with type of job operation
Unit2 -DBMS.ppt with type of job operation
 
DBMS CS3
DBMS CS3DBMS CS3
DBMS CS3
 
07.05 division
07.05 division07.05 division
07.05 division
 

More from Visakh V

Functional dependency and normalization
Functional dependency and normalizationFunctional dependency and normalization
Functional dependency and normalizationVisakh V
 
Data base recovery
Data base recoveryData base recovery
Data base recoveryVisakh V
 
Relational algebra complete
Relational algebra completeRelational algebra complete
Relational algebra completeVisakh V
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms usersVisakh V
 
Transaction Management
Transaction Management Transaction Management
Transaction Management Visakh V
 
Memory Management
Memory ManagementMemory Management
Memory ManagementVisakh V
 
Slide 5 keys
Slide 5 keysSlide 5 keys
Slide 5 keysVisakh V
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms usersVisakh V
 
Slide 6 er strong & weak entity
Slide 6 er  strong & weak entitySlide 6 er  strong & weak entity
Slide 6 er strong & weak entityVisakh V
 
Slide 3 data abstraction & 3 schema
Slide 3 data abstraction & 3 schemaSlide 3 data abstraction & 3 schema
Slide 3 data abstraction & 3 schemaVisakh V
 
Slide 2 data models
Slide 2 data modelsSlide 2 data models
Slide 2 data modelsVisakh V
 
Slide 1 introduction to dbms
Slide 1 introduction to dbmsSlide 1 introduction to dbms
Slide 1 introduction to dbmsVisakh V
 
Functional dependancy
Functional dependancyFunctional dependancy
Functional dependancyVisakh V
 
data constraints,group by
data constraints,group by data constraints,group by
data constraints,group by Visakh V
 

More from Visakh V (15)

Functional dependency and normalization
Functional dependency and normalizationFunctional dependency and normalization
Functional dependency and normalization
 
Data base recovery
Data base recoveryData base recovery
Data base recovery
 
Relational algebra complete
Relational algebra completeRelational algebra complete
Relational algebra complete
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms users
 
Transaction Management
Transaction Management Transaction Management
Transaction Management
 
Memory Management
Memory ManagementMemory Management
Memory Management
 
Slide 5 keys
Slide 5 keysSlide 5 keys
Slide 5 keys
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms users
 
Slide 6 er strong & weak entity
Slide 6 er  strong & weak entitySlide 6 er  strong & weak entity
Slide 6 er strong & weak entity
 
Slide 3 data abstraction & 3 schema
Slide 3 data abstraction & 3 schemaSlide 3 data abstraction & 3 schema
Slide 3 data abstraction & 3 schema
 
Slide 2 data models
Slide 2 data modelsSlide 2 data models
Slide 2 data models
 
Slide 1 introduction to dbms
Slide 1 introduction to dbmsSlide 1 introduction to dbms
Slide 1 introduction to dbms
 
Data
DataData
Data
 
Functional dependancy
Functional dependancyFunctional dependancy
Functional dependancy
 
data constraints,group by
data constraints,group by data constraints,group by
data constraints,group by
 

Recently uploaded

Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
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
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
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
 

Recently uploaded (20)

Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
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
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
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
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
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
 

Relational algebr