I'm new to relational algebra and i have a simple question. Lets say we have two tables : TOP(object_id, number) and Renter(object_id, number, rent). My job is to get : Object_id and number from TOP with the highest rent price. The thing i did is : ∏ object_id, number( Gmax(rent) (TOP ⋈ Renter))
is that correct? A saw that the calligraphic 'G' is used instead of the select operator . But why? Is it because we select a list of all the tuples and then the output is a single result?