
Tridip C. answered 08/16/20
5+ years of experience with both SQL and NoSQL based databases
The query
will have an equivalent relational algebra form as follows:
πName σId = PlayerId ∧ Game = 'Football' ∧ Season ='2019' (Players ×Games)
Sara S.
asked 10/10/19How I can translate the SQL query to a relational algebra expression?
SELECT P.Name
FROM Players P, Games G
WHERE P.Id = G.PlayerId
AND P.Game = 'Football' AND G.Season ='2019'
where:
Players (Id, Name, Game)
Games (PlayerId, GameCode, Season)
Tridip C. answered 08/16/20
5+ years of experience with both SQL and NoSQL based databases
The query
will have an equivalent relational algebra form as follows:
πName σId = PlayerId ∧ Game = 'Football' ∧ Season ='2019' (Players ×Games)
Get a free answer to a quick problem.
Most questions answered within 4 hours.
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.