relational icon indicating copy to clipboard operation
relational copied to clipboard

Educational tool for relational algebra

Results 4 relational issues
Sort by recently updated
recently updated
newest added

In our course, we use the theta-join (θ-join) operator: https://en.wikipedia.org/wiki/Relational_algebra#%CE%B8-join_and_equijoin

enhancement
waiting patch

``` empty = πroom(σ id is None (people ⧓ person_room ⧓ rooms)) full = πroom(σ r==room and i != id ( πr,i (ρ room➡r, id➡i ( people ⧓ person_room ⧓...

bug

`σ date is None or date.month== 8 (people*dates⧓skills)` It doesn't get picked up because of accessing `date.month` rather than just `date`.

enhancement