验证我的 Sqlite 查询?

发布于 2024-10-27 14:48:33 字数 426 浏览 0 评论 0原文

我在 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 :
enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听,心雨的声音 2024-11-03 14:48:33

我不确定你到底在问什么,但如果你想要一个总值,那么你应该使用 SUM 函数而不是 COUNT 函数:

SELECT date, year, month, SUM(Value_Pressed) AS Yes 
  FROM value_table 
 WHERE date BETWEEN 25 AND 30 
   AND value_pressed ='YES' 
GROUP BY date

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:

SELECT date, year, month, SUM(Value_Pressed) AS Yes 
  FROM value_table 
 WHERE date BETWEEN 25 AND 30 
   AND value_pressed ='YES' 
GROUP BY date
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文