Rename versus Assignment
Rename changes the name or attributes of an existing relation,
giving a new way to refer to it in subsequent queries.
ρcus(customer)
σcustomer_city="Aurora"(cus)
ρcus(cn, cs, cc)(customer)
makes the following query valid:
σcc="Aurora"(cus)
Assignment creates a new relation.
cus ← σcustomer_street="Main"(customer)
also makes the following query valid
σcustomer_city="Aurora"(cus)