将 sql 视图查询更改为关系代数?
我想将这个 sql 查询转换为关系代数。
SQL查询:
SELECT *
FROM Library
WHERE libName='florence'
I want to convert this sql query into relational algebra.
sql query:
SELECT *
FROM Library
WHERE libName='florence'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道你所说的“转换为”关系代数是什么意思。但在关系代数中,该句子将是:
基本上,对
SELECT
操作code>Library 表,带有条件。I don't know what you mean with convert to relational algebra. But in relational algebra that sentence would be:
Basically, the
SELECT
operation over theLibrary
table, with a condition.该视图与以下结果相同:
that view is the same as the result of: