dbis-uibk / relax

RelaX - a relational algebra calculator
http://dbis-uibk.github.io/relax/
MIT License
288 stars 99 forks source link

Support for + operator (Extended Relational Algebra) #223

Open lcmarquez2005 opened 1 week ago

lcmarquez2005 commented 1 week ago

The ability to sum two columns and given a column result, like relational algebra.

Example: Π atribute1, atribute2, (atribute1 + atribute2 → sum_atributes) (table) Another Example: Π table1.atribute1, table2.atribute1, (table1.atribute1 + table2.atribute2 → sum_atributes) (table1 ⨝ table2)

rlaiola commented 1 week ago

This featured is already available. Here is an example using the UIBK - R, S, T database:

π a+d->sum (R ⨯ T)
lcmarquez2005 commented 13 hours ago

Oh yeah, thank you so much, great project btw!!, i liked it