Relational Algebra Flashcards
1
Q
What is it
A
Relational algebra is a procedural query language.
2
Q
Select(sigma)
A
Sigma customer_city = ‘agra’ (Table name)
3
Q
Project
A
Project operator is denoted by a symbol. It is used to select desired columns.
Project custname,custcity (Table name)
4
Q
Union U
A
It is used to select all the rows from two tables.
project studentname(s1) U project studentname(s2)