gpt4 book ai didi

android - 使用 sqlite.query() 函数的 GROUP BY 查询

转载 作者:搜寻专家 更新时间:2023-11-01 07:52:42 27 4
gpt4 key购买 nike

我有 sqlite 工作和测试查询。

我只是想把它转换成sqlitedatabase.query();函数

select distinct id, date ,sum(goal) from goal where id=0 and date = 'Sep 15, 2015' group by id, date;

如何实现?

最佳答案

尝试以下。

String table = "goal";
String[] columns = new String[] { "distinct id", "date", "sum(goal)" };
String selection = "id=? and date=?";
String[] arguments = new String[] { "0", "Sep 15, 2015" };
String groupBy = "id, date";
String having = null;
String orderBy = null;
db.query(table, columns, selection, arguments, groupBy, having, orderBy);

参见 doc

关于android - 使用 sqlite.query() 函数的 GROUP BY 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32598847/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com