Ruby DataMapper,如何进行比较两列的查询
假设表 A 中有两个属性: 属性a,整数 属性 b,整数
我想查找 a < 的所有行b.
是否可以使用 DataMapper all 方法来做到这一点?
我当然知道如何在原始 SQL 中查询它
Let's say I have two properties in the Table A:
property a, Integer
property b, Integer
I want to find all rows where a < b.
Is it possible to use DataMapper all method to do so?
I know how to query this in raw SQL of course
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
A.all(:conditions => ["a < b"]) 就可以了,但是还有更好的方法吗?
A.all(:conditions => ["a < b"]) will do, but is there any better way?