Lecture Notes: Relational Algebra
What? Why?
- Similar to normal algebra (as in 2+3*x-y), except we use relations as values instead of numbers, and the operations and operators are different.
- Not used as a query language in actual DBMSs. (SQL instead.)
- The inner, lower-level operations of a relational DBMS are, or are similar to, relational algebra operations. We need to know about relational algebra to understand query execution and optimization in a relational DBMS.
- Some advanced SQL queries requires explicit relational algebra operations, most commonly outer join.
- Relations are seen as sets of tuples, which means that no duplicates are allowed. SQL behaves differently in some cases. Remember the SQL keyword distinct.
- SQL is declarative, which means that you tell the DBMS what you want, but not how it is to be calculated. A C++ or Java program is procedural, which means that you have to state, step by step, exactly how the result should be calculated. Relational algebra is (more) procedural than SQL. (Actually, relational algebra is mathematical expressions.)
Set operations
Relations in relational algebra are seen as sets of tuples, so we can use basic set operations.Review of concepts and operations from set theory
- set
- element
- no duplicate elements (but: multiset = bag)
- no order among the elements (but: ordered set)
- subset
- proper subset (with fewer elements)
- superset
- union
- intersection
- set difference
- cartesian product
Projection
Example: The table E (for EMPLOYEE)
nr | name | salary |
---|---|---|
1 | John | 100 |
5 | Sarah | 300 |
7 | Tom | 100 |
SQL | Result | Relational algebra | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
select salary |
| PROJECTsalary(E) | ||||||||
select nr, salary |
| PROJECTnr, salary(E) |
Note that there are no duplicate rows in the result.
Selection
The same table E (for EMPLOYEE) as above.
SQL | Result | Relational algebra | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
select * |
| SELECTsalary <>(E) | |||||||||
select * |
| SELECTsalary <>= 7(E) |
Note that the select operation in relational algebra has nothing to do with the SQL keyword select. Selection in relational algebra returns those tuples in a relation that fulfil a condition, while the SQL keyword select means "here comes an SQL statement".
Relational algebra expressions
SQL | Result | Relational algebra | ||||||
---|---|---|---|---|---|---|---|---|
select name, salary |
| PROJECTname, salary (SELECTsalary <>(E))
Temp <- SELECTsalary <>(E) |
Notation
The operations have their own symbols. The symbols are hard to write in HTML that works with all browsers, so I'm writing PROJECT etc here. The real symbols:
Example: The relational algebra expression which I would here write as
PROJECTNamn ( SELECTMedlemsnummer <> ( Medlem ) )
should actually be written
Cartesian product
The cartesian product of two tables combines each row in one table with each row in the other table.Example: The table E (for EMPLOYEE)
enr | ename | dept |
---|---|---|
1 | Bill | A |
2 | Sarah | C |
3 | John | A |
Example: The table D (for DEPARTMENT)
dnr | dname |
---|---|
A | Marketing |
B | Sales |
C | Legal |
SQL | Result | Relational algebra | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
select * |
| E X D |
- Seldom useful in practice.
- Usually an error.
- Can give a huge result.
Join (sometimes called "inner join")
The cartesian product example above combined each employee with each department. If we only keep those lines where the dept attribute for the employee is equal to the dnr (the department number) of the department, we get a nice list of the employees, and the department that each employee works for:
SQL | Result | Relational algebra | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
select * |
| SELECTdept = dnr (E X D)
E JOINdept = dnr D |
- A very common and useful operation.
- Equivalent to a cartesian product followed by a select.
- Inside a relational DBMS, it is usually much more efficient to calculate a join directly, instead of calculating a cartesian product and then throwing away most of the lines.
- Note that the same SQL query can be translated to several different relational algebra expressions, which all give the same result.
- If we assume that these relational algebra expressions are executed, inside a relational DBMS which uses relational algebra operations as its lower-level internal operations, different relational algebra expressions can take very different time (and memory) to execute.
Natural join
A normal inner join, but using the join condition that columns with the same names should be equal. Duplicate columns are removed.Renaming tables and columns
Example: The table E (for EMPLOYEE)
nr | name | dept |
---|---|---|
1 | Bill | A |
2 | Sarah | C |
3 | John | A |
Example: The table D (for DEPARTMENT)
nr | name |
---|---|
A | Marketing |
B | Sales |
C | Legal |
We want to join these tables, but:
- Several columns in the result will have the same name (nr and name).
- How do we express the join condition, when there are two columns called nr?
Solutions:
- Rename the attributes, using the rename operator.
- Keep the names, and prefix them with the table name, as is done in SQL. (This is somewhat unorthodox.)
SQL | Result | Relational algebra | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
select * |
| (RENAME(enr, ename, dept)(E)) JOINdept = dnr (RENAME(dnr, dname)(D)) | ||||||||||||||||||||
select * |
| E JOINdept = D.nr D |
You can use another variant of the renaming operator to change the name of a table, for example to change the name of E to R. This is necessary when joining a table with itself (see below).
RENAMER(E)A third variant lets you rename both the table and the columns:
RENAMER(enr, ename, dept)(E)
Aggregate functions
Example: The table E (for EMPLOYEE)
nr | name | salary | dept |
---|---|---|---|
1 | John | 100 | A |
5 | Sarah | 300 | C |
7 | Tom | 100 | A |
12 | Anne | null | C |
SQL | Result | Relational algebra | ||
---|---|---|---|---|
select sum(salary) |
| Fsum(salary)(E) |
Note:
- Duplicates are not eliminated.
- Null values are ignored.
SQL | Result | Relational algebra | ||
---|---|---|---|---|
select count(salary) | Result:
| Fcount(salary)(E) | ||
select count(distinct salary) | Result:
| Fcount(salary)(PROJECTsalary(E)) |
You can calculate aggregates "grouped by" something:
SQL | Result | Relational algebra | ||||||
---|---|---|---|---|---|---|---|---|
select sum(salary) |
| deptFsum(salary)(E) |
Several aggregates simultaneously:
SQL | Result | Relational algebra | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
select sum(salary), count(*) |
| deptFsum(salary), count(*)(E) |
Standard aggregate functions: sum, count, avg, min, max
Hierarchies
Example: The table E (for EMPLOYEE)
nr | name | mgr |
---|---|---|
1 | Gretchen | null |
2 | Bob | 1 |
5 | Anne | 2 |
6 | John | 2 |
3 | Hulda | 1 |
4 | Hjalmar | 1 |
7 | Usama | 4 |
Going up in the hierarchy one level: What's the name of John's boss?
SQL | Result | Relational algebra | ||
---|---|---|---|---|
select b.name |
| PROJECTbname ([SELECTpname = "John"(RENAMEP(pnr, pname, pmgr)(E))] JOINpmgr = bnr [RENAMEB(bnr, bname, bmgr)(E)])
PROJECTb.name ([SELECTname = "John"(RENAMEP(E))] JOINp.mgr = b.nr [RENAMEB(E)])
P <- RENAMEP(pnr, pname, pmgr)(E) |
Notes about renaming:
- We are joining E with itself, both in the SQL query and in the relational algebra expression: it's like joining two tables with the same name and the same attribute names.
- Therefore, some renaming is required.
- RENAMEP(E) JOIN... RENAMEB(E) is a start, but then we still have the same attribute names.
Going up in the hierarchy two levels: What's the name of John's boss' boss?
SQL | Result | Relational algebra | ||
---|---|---|---|---|
select ob.name |
| PROJECTob.name (([SELECTname = "John"(RENAMEP(E))] JOINp.mgr = b.nr [RENAMEB(E)]) JOINb.mgr = ob.nr [RENAMEOB(E)])
P <- RENAMEP(pnr, pname, pmgr)(E) |
Recursive closure
Both one and two levels up: What's the name of John's boss, and of John's boss' boss?
SQL | Result | Relational algebra | |||
---|---|---|---|---|---|
(select b.name ...) |
| (...) UNION (...) |
Recursively: What's the name of all John's bosses? (One, two, three, four or more levels.)
- Not possible in (conventional) relational algebra, but a special operation called transitive closure has been proposed.
- Not possible in (standard) SQL (SQL2), but in SQL3, and using SQL + a host language with loops or recursion.
Outer join
Example: The table E (for EMPLOYEE)
enr | ename | dept |
---|---|---|
1 | Bill | A |
2 | Sarah | C |
3 | John | A |
Example: The table D (for DEPARTMENT)
dnr | dname |
---|---|
A | Marketing |
B | Sales |
C | Legal |
List each employee together with the department he or she works at:
SQL | Result | Relational algebra | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
select *
select * |
| E JOINedept = dnr D |
No employee works at department B, Sales, so it is not present in the result. This is probably not a problem in this case. But what if we want to know the number of employees at each department?
SQL | Result | Relational algebra | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
select dnr, dname, count(*)
select dnr, dname, count(*) |
| dnr, dnameFcount(*)(E JOINedept = dnr D) |
No employee works at department B, Sales, so it is not present in the result. It disappeared already in the join, so the aggregate function never sees it. But what if we want it in the result, with the right number of employees (zero)?
Use a right outer join, which keeps all the rows from the right table. If a row can't be connected to any of the rows from the left table according to the join condition, null values are used:
SQL | Result | Relational algebra | |||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
select * |
| E RIGHT OUTER JOINedept = dnr D | |||||||||||||||||||||||||
select dnr, dname, count(*) |
| dnr, dnameFcount(*)(E RIGHT OUTER JOINedept = dnr D) | |||||||||||||||||||||||||
select dnr, dname, count(enr) |
| dnr, dnameFcount(enr)(E RIGHT OUTER JOINedept = dnr D) |
Join types:
- JOIN = "normal" join = inner join
- LEFT OUTER JOIN = left outer join
- RIGHT OUTER JOIN = right outer join
- FULL OUTER JOIN = full outer join
Outer union
Outer union can be used to calculate the union of two relations that are partially union compatible. Not very common.Example: The table R
A | B |
---|---|
1 | 2 |
3 | 4 |
Example: The table S
B | C |
---|---|
4 | 5 |
6 | 7 |
The result of an outer union between R and S:
A | B | C |
---|---|---|
1 | 2 | null |
3 | 4 | 5 |
null | 6 | 7 |
Division
Who works on (at least) all the projects that Bob works on?Semijoin
A join where the result only contains the columns from one of the joined tables. Useful in distributed databases, so we don't have to send as much data over the network.Update
To update a named relation, just give the variable a new value. To add all the rows in relation N to the relation R:R <- R UNION N
Taken from:
No comments:
Post a Comment