I'm kinda stuck on this relational algebra question, any help would be really appreciated. Many thanks!
Schema:
Product (maker, model, type)
PC (model, speed, ram, harddrive, screen, price)Using no aggregate function, list the maker that makes the PC with the fastest processor.
It seems we could draw a solution by using speed = max(speed) aggregate function easily,
but how can we solve it without aggregate function? I'm kinda confused.
Thanks!