MySQL选择日期,加入统计数据-如何?
我有一些需要每月报告的统计数据。我需要我的查询返回 0 以获取不存在的统计信息。我知道执行此操作的唯一方法是使用 SQL 生成指定时间段内的日期列表,并LEFT JOIN
我需要报告的统计数据。
问题是......我从来没有从这样的表中选择......我该怎么做?
I have some statistics I need to report on a monthly basis. I need my query to return 0's for statistics which aren't there. The only way I know to do this is to use SQL to generate a list of days within the specified time period and LEFT JOIN
the statistic data that I need to report on.
Problem is.... I've never not selected from a table like that... how do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
比较您的返回值,对于从未存在过的统计数据,您的返回值可能为 null,您只需将返回值与 null 进行比较,如果 null 返回 0,否则返回真实结果
,您可以使用此链接阅读更多信息
http://dev.mysql.com/doc/ refman/5.0/en/comparison-operators.html#function_isnull
Compare your returned values, for statistic that never existed your returned value probably will be null, all you need to compare returned value with null and if null return 0 otherwise return real result
and you can use this link to read more at
http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#function_isnull
如果值为 NULL 使用
If the values are NULL use
我最终只是使用 SQL 来提取给定时间段内的数据并在 PHP 端处理其他所有事情。不完全是我想要的,但它有效。
I ended up just using SQL to pull the data I have for the given period and handling everything else on the PHP side. Not exactly what I wanted, but it works.