Changing sql view query in relational algebra?

I want to convert this sql query to a relational alegbra, im new to this :))

sql query

SELECT *
FROM Library
WHERE libName='florence'

thank:))

EDIT: I deleted the view because it would still be the same thing.

+3
source share
2 answers

I do not know what you mean by conversion to relational algebra. But in relational algebra this sentence will be:

alt text

In principle, an operation SELECTin a table Librarywith a condition.

+4
source

this view matches the result:

SELECT *
FROM Library
WHERE libName='florence'
-2
source

Source: https://habr.com/ru/post/1777668/


All Articles