Relational Algebra Flashcards

1
Q

What is it

A

Relational algebra is a procedural query language.

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

Select(sigma)

A

Sigma customer_city = ‘agra’ (Table name)

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

Project

A

Project operator is denoted by a symbol. It is used to select desired columns.

Project custname,custcity (Table name)

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

Union U

A

It is used to select all the rows from two tables.

project studentname(s1) U project studentname(s2)

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