I have 2 tables and I need to write a query in relational algebra that will select all names of teams, who are not working with any client. I have these relations
team( id, name )
client( id, name, teamId )
teamId ⊆ team.id
Tables looks like this
Could you please help me what would be the query in relational algebra? I was thinking about joining these 2 tables and selecting rows there team has Client.teamId as NULL, but I don't know how to formally write it.