Final - Relational Algebra Flashcards

1
Q

What is relational algebra?

A

A basic set of operations for the relational model

Central to how RDBMSs process queries for execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why is it called an algebra?

A

Can specify expressions, manipulate operations and operands

Operands are relations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a relational algebra expression?

A

Sequence of relational algebra operations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the closure of relational algebra?

A

Each operation takes one or more relations as input and returns a single relation as output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are unary relational operators?

A

Operators that only take in 1 relation

Examples: Select, Project, Assignment, Rename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the Select operation do?

A

A subset of the tuples from a relation that satisfies a selection condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the syntax for the Select operation?

A

σ<select>(R)</select>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the Project operation do?

A

Selects columns from the table and discards the other columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the syntax for the Project operation?

A

π<attribute>(R)</attribute>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a key feature of expressions in relational algebra?

A

Can nest operations to form more complex expressions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the Assignment operation do?

A

Creates names for intermediate result relations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the syntax for the Assignment operation?

A

<variable> ← <rel>
</rel></variable>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does the Rename operation do?

A

Gives a new schema to a relation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the syntax for the Rename operation?

A

ρ_{R(A1, A2, … An)}(E)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are binary relational operators?

A

Operators that take two relations as input

Examples: Union, Difference, Intersection, Cartesian Product, Join, Left Outer Join

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the Union operation do?

A

Includes all tuples that are either in R or in S or in both R and S

17
Q

What is the syntax for the Union operation?

18
Q

What does the Difference operation do?

A

Includes all tuples that are in R but not in S

19
Q

What is the syntax for the Difference operation?

20
Q

What does the Intersection operation do?

A

Includes all tuples that are in both R and S

21
Q

What is the syntax for the Intersection operation?

22
Q

What does the Cartesian Product operation do?

A

Includes all permutations of tuples in R with tuples in S

23
Q

What is the syntax for the Cartesian Product operation?

24
Q

What is the Inner Join operation equivalent to?

A

Equivalent to a Cartesian product and a select

25
Q

What is the syntax for the Inner Join operation?

A

R ⋈<join> S</join>

26
Q

What does the Left Outer Join operation do?

A

Not specified in the provided content

27
Q

What is the syntax for the Left Outer Join operation?

A

R ⟕<join> S</join>

28
Q

What does the Aggregation operation do?

A

Performs operations like count, sum, max, min, avg

29
Q

What is the syntax for the Aggregation operation?

A

ℱ_{Opr(attributes)}(R)

30
Q

What is the result of the aggregation operation?

A

A scalar, not a relation