|< < 9 > >|

Relational Algebra: Notation

A Relational Algebra expression in traditional notation

Find the dates on which orders were placed for Runcible Spoons.

Π[order_date]product_name = "Runcible Spoon"(Order ⨝ Product))


The same Relational Algebra expression in functional notation

My preference:
( ( (Order, Product) product_name = "Runcible Spoon"), ["order_date"])

|< < 9 > >|