0
0
DBMS Theoryknowledge~5 mins

Selection operation in DBMS Theory - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the Selection operation in a database?
The Selection operation is a query that retrieves rows from a table that satisfy a specific condition. It filters data based on criteria.
Click to reveal answer
beginner
Which symbol is commonly used to represent the Selection operation in relational algebra?
The Selection operation is represented by the Greek letter sigma (σ) in relational algebra.
Click to reveal answer
intermediate
How does Selection differ from Projection in database operations?
Selection filters rows based on conditions, while Projection selects specific columns from a table.
Click to reveal answer
beginner
Give an example of a Selection operation condition.
An example condition: σ (age > 30) selects all rows where the age column is greater than 30.
Click to reveal answer
beginner
What is the result of a Selection operation?
The result is a subset of the original table containing only rows that meet the selection criteria, with all columns intact.
Click to reveal answer
What does the Selection operation do in a database?
AFilters rows based on a condition
BSelects specific columns
CJoins two tables
DDeletes rows from a table
Which symbol represents the Selection operation in relational algebra?
Aσ (sigma)
B∪ (union)
Cπ (pi)
D× (cross product)
If you want to get all employees with salary > 5000, which operation would you use?
AUnion
BProjection
CJoin
DSelection
What does Selection operation return?
ASubset of columns
BSubset of rows
CAll rows and columns
DEmpty table
Which of these is NOT true about Selection operation?
AIt filters rows
BIt is represented by σ
CIt changes the number of columns
DIt uses conditions
Explain the Selection operation and how it is used in databases.
Think about how you pick certain records from a list based on a rule.
You got /4 concepts.
    Describe the difference between Selection and Projection operations.
    One picks rows, the other picks columns.
    You got /4 concepts.