用于使用关系模型进行查询的现有库是什么?
我正在寻找一个简单的高级库(用 python 实现会很好)来处理 关系代数。或者,现有的 SQL 实现可能支持这些查询。
例如,如果account
关系的关系模式是(account id, name,balance)
,我想在此处输入表达式
'http://www.mathtran.org/cgi-bin/mathtran ?tex=\pi_{name}(\sigma_{account_id>3}(\text{account}))'
并且不必担心取回多重集。
I'm looking for a simple, high level library (implemented in python would be nice) for handling the relational algebra. Alternatively, an existing SQL implementation might have support for these queries.
For example, if the relation schema of the account
relation is (account id, name, balance)
, I'd like to input the expression here
'http://www.mathtran.org/cgi-bin/mathtran?tex=\pi_{name}(\sigma_{account_id>3}(\text{account}))'
and not have to worry about getting back a multiset.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个非常简单的基于 C 的关系代数库。
Here is a pretty simple C-based relational algebra library.
Dee,一个 python 库,包括项目、重命名、连接、限制(选择),甚至划分...
http: //www.quicksort.co.uk/
Dee, a python library including project, rename, join, restriction (select), and even divide...
http://www.quicksort.co.uk/