In the table: Students(id,name,scholarship), where scholarship can be NULL, I want to express using relational algebra the following query (show the names of the students that have a scholarship):
SELECT name FROM Students WHERE scholarship IS NOT null;