验证我的 Sqlite 查询?
我在 Sqlite 中有一个表,其中包含以下字段:- Number、Value_Pressed、Time、Date、Month、Year
输出应该是 Date、Yes、No 和 Mood。我的查询返回几乎合适的结果,但问题是如何获得总值按特定日期。 这是查询 m 使用:-
“从 value_table 中选择日期,年,月,计数(*)是,其中日期在 25 到 30 之间,并且 value_pressed ='YES' 按日期分组”。
25 和 30 是 NSstring 中的日期。
该查询的输出是:
我已经使用了 Union。但它没有返回所需的输出。请帮助我。J
请帮助我......为此我将非常感谢你......
I have a table in Sqlite with these fields:- Number,Value_Pressed,Time,Date, Month,Year
The Output should be Date,Yes,No and Mood.My query returns almost appropriate result but the problem is how can get the total Value pressed on the particular date.
Here's the query m using:-
"select date,year,month, count(*) Yes from value_table where date between 25 and 30 and value_pressed ='YES' group by date".
25 and 30 is date which is in NSstring.
The output of this query is :
i have already used the Union.But it's not returning desired output.Please help me.J
Please help me ...I shall be realy thankful to you for this..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你到底在问什么,但如果你想要一个总值,那么你应该使用 SUM 函数而不是 COUNT 函数:
I'm not sure exactly what you are asking, but if you want a total value, then you should use the SUM function rather than the COUNT function: