How can I find MAX with relational algebra?

Assuming you have a relation, A, with a single attribute, ‘a’ (reducing a more complex relation to this is a simple task in relational algebra, I’m sure you got this far), so now you want to find the maximum value in A.

One way to do it is to find the cross product of A with itself, be sure to rename ‘a’ so your new relation has attributes with distinct names. for example:

(rename ‘a’ as ‘a1’) X (rename ‘a’ as ‘a2’)

now select ‘a1’ < ‘a2’, the resulting relation will have all values except the maximum. To get the max simply find the difference between your original relation:

(A x A) - (select 'a1' < 'a2') ((rename 'a' as 'a1')(A) x (rename 'a' as 'a2')(A))

Then use the project operator to reduce down to a single column as Tobi Lehman suggests in the comment below.

Writing this in relational algebra notation would be (if I remember correctly). Note the final rename (i.e. ρ) is just to end up with an attribute that has the same name as in the original relation:

ρa/a1a1((A x A) – σa1 < a2a1/a(A) x ρa2/a(A))))

Leave a Comment