Smartmind
.global
Which of the following is a valid relational calculus expression that retrieves all employees with a salary greater than $10,000?
{ t | t.salary > 10000 }
t.name = 'John'
t.salary > 10000
{ t | t.name = 'John' }
Database Systems Exercises are loading ...