我想知道如何使用grails标准执行列计算。基本上是将转换为以下sql查询的条件语法。
SELECT * FROM table WHERE (first_column * second_column) > 30;
答案 0 :(得分:0)
一种可能的选择是使用sql restrictions:
def results = DomainClass.withCriteria {
...
sqlRestriction "(first_column * second_column) > 30"
}