grails框架中查詢聚合函式,如條數,總額

2021-06-05 22:39:48 字數 801 閱讀 9851

def query=

if(params.tradedonedateend)

//先以商戶編號為準

if(params.batchbizid)else

//使用in的時候,傳遞引數為乙個結果集,而非乙個逗號分割的字串

if(cmcustomer.size()>0)

}else

}if(params.tradetype&¶ms.tradetype!="-1")

if(params.tradecardname)

if(params.tradecardnum)

if(params.tradeaccountname!=null && params.tradeaccountname!="")

if(params.tradeaccounttype)

if(params.batchid)

if(params.id)

/*if(params.tradefeestyle!="-1" && params.tradefeestyle!=null)*/

/*if(params.traderemark2!="" && params.traderemark2!=null)*/

if(params.batchstatus&¶ms.batchstatus!="-1")

order("id","desc")

}def  results = mydomain.createcriteria().get

}這裡要注意一下,這個results 返回的是乙個陣列,而非是物件的list,如果要取值的話,比如記錄條數,則為results[0].

SQL Server聚合函式和子查詢迭代求和方法

2008 09 04 11 42 本文介紹了在sql server中使用聚合函式和子查詢迭代求和的公式與方法。先看看下面的表和其中的資料 t product 圖1該錶有兩個字段 xh和price,其中xh是主索引字段,現在要得到如下的查詢結果 圖2從上面的查詢結果可以看出,totalprice字段值...

第10章 模糊查詢和聚合函式

use myschool 萬用字元 匹配0 n個任意字元 匹配單個字元 匹配區間內的值 如 13 不匹配區間內的值 模糊查詢 查詢學生表中性 張 的學生記錄 select from student where studentname like 張 select from student where ...

MySQL使用聚合函式進行單錶查詢

聚合函式 作用於一組資料,對那組資料返回乙個值 注意,分組函式 group by。如果要對 分組後 的資料進行篩選,那麼必須使用 h ing 關鍵字,條件寫在 h ing 後面 create table city id int auto increment primary key comment 主...