这个库是否支持 Group by 子句?
我写了查询 Select SectionName, DepartmentName, SUM(SalesValue) FROM ( SELECT SectionName, Date, DepartmentName, SalesValue FROM StockDaily join Section on StockDaily.idSection=Section._id join Department on StockDaily.idDepartment = Department._id where idStore=1 and Date >=" + '"' + from + '"' + "and Date <=" + '"' + to + '"' + ")"+" 按 SectionName 分组
它在 sqlite manager 中工作,但在 lib 中的 cod 中没有:/ 你有什么想法吗?