我一直在这方面花了一些时间。我的问题涉及带回具有某些标准和条件的域对象:
我有一大堆自行车。有可能拥有多辆车轮尺寸相似的自行车。例如我可以有 5 辆自行车:
owner_id | bike | wheel | price | active | toolset | forLance
_________|______|_______|_______|________|_________|__________
15459 |liner | 12 | 100 | Y | null | H
15459 |larker| 15 | 150 | Y | null | H
15459 |jefro | 21 | 225 | Y | null | H
15459 |raz | 21 | 230 | Y | null | L
15459 |jynx | 21 | 295 | Y | null | P
我在下面的查询检索了所有车轮尺寸不重复且价格最低的自行车。
MySQL查询:
select * from bike b
where b.owner_id = 15459
and not exists( select * from bike
where wheels = b.wheels AND price < b.price
and owner_id = b.owner_id) and b.active = 'Y';
结果会给我自行车的行:liner、larker 和 jefro。
在 grails//groovy 中是否有等效的方法来执行此操作?(将 liner、larker 和 jefro 获取到域对象列表中)
我尝试过使用如下结构:
def bikes = Bike.executeQuery(...)
or
def bike = Bike.findAll(...)
但我似乎无法执行与我制作的 MySQL 脚本结构相似的查询。
谢谢您的帮助!