2020-08-24 07:38:45 +07:00
|
|
|
|
Relational
|
|
|
|
|
==========
|
|
|
|
|
|
2015-02-11 09:56:21 +07:00
|
|
|
|
Relational an educational tool to provide a workspace for experimenting with *relational* *algebra*, an offshoot of first-order logic.
|
|
|
|
|
|
2020-08-24 07:38:45 +07:00
|
|
|
|
![screenshot](https://ltworf.github.io/relational/screenshots/3.png)
|
|
|
|
|
|
|
|
|
|
I test it on GNU/Linux and Windows. It probably works on other systems too.
|
2016-01-01 05:35:12 +07:00
|
|
|
|
|
|
|
|
|
It provides:
|
|
|
|
|
* A GUI that can be used for executing relational queries
|
|
|
|
|
* A standalone Python module that can be used for executing relational queries, parsing relational expressions and optimizing them
|
|
|
|
|
* A command line interface
|
2015-02-11 09:56:21 +07:00
|
|
|
|
|
|
|
|
|
|
2015-05-31 12:12:10 +07:00
|
|
|
|
Official website
|
|
|
|
|
================
|
|
|
|
|
|
2020-08-24 07:38:45 +07:00
|
|
|
|
More documentation can be found here https://ltworf.github.io/relational/
|
2015-05-31 12:12:10 +07:00
|
|
|
|
|
|
|
|
|
|
2015-02-11 09:56:21 +07:00
|
|
|
|
Install
|
|
|
|
|
=======
|
|
|
|
|
|
2020-08-24 07:38:45 +07:00
|
|
|
|
* Windows: https://ltworf.github.io/relational/download.html?exe
|
|
|
|
|
* Debian based: `apt-get install relational`
|
|
|
|
|
* Everyone else: Download the sources https://ltworf.github.io/relational/download.html?tar.gz
|
2015-02-11 09:56:21 +07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Run from sources
|
|
|
|
|
================
|
2020-08-24 07:38:45 +07:00
|
|
|
|
|
|
|
|
|
For the dependencies, check `debian/control` for the build dependencies.
|
2015-09-11 07:20:08 +07:00
|
|
|
|
|
|
|
|
|
You will need to run
|
|
|
|
|
```
|
|
|
|
|
make
|
|
|
|
|
```
|
|
|
|
|
to generate some .py files.
|
2015-02-11 09:56:21 +07:00
|
|
|
|
|
|
|
|
|
To launch the application, run
|
|
|
|
|
|
2015-02-11 10:07:39 +07:00
|
|
|
|
```
|
2020-08-24 03:26:41 +07:00
|
|
|
|
./relational.py
|
2016-01-01 05:35:12 +07:00
|
|
|
|
```
|
2020-08-24 07:38:45 +07:00
|
|
|
|
|
|
|
|
|
Syntax
|
|
|
|
|
======
|
|
|
|
|
|
|
|
|
|
These are some valid queries (using the provided example dataset)
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# Join people and skills
|
|
|
|
|
people ⋈ skills
|
|
|
|
|
|
|
|
|
|
# Select people within a certain age range
|
|
|
|
|
σ age > 25 and age < 50 (people)
|
|
|
|
|
|
|
|
|
|
# Selection with complicated expression requires an extra set of () around the expression
|
|
|
|
|
σ (name.upper().startswith('J') and age > 21) (people)
|
|
|
|
|
|
|
|
|
|
# Cartesian product of people with itself, including only name and id
|
|
|
|
|
ρ id➡i, name➡n (people) * π name, id (people)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For the selection, python expressions are used.
|
|
|
|
|
|
|
|
|
|
The syntax is explained here: https://ltworf.github.io/relational/allowed_expressions.html
|