Jasper-reports:错误:运算符不存在 date = boolean

发布于 2025-01-06 00:55:43 字数 750 浏览 0 评论 0原文

[编辑:这个问题是版本 3.7.6 中的错误造成的]

以下 postgresql 查询返回错误:

operator does not exist date = boolean. 

我不明白为什么。这是给我错误的 postgresql 代码:

select
    c.source,
    s.name,
    s.grouping,
    s.kli,
    s.term_desc,
    (s.population - s.online) as non_hb_pop,
    s.online as hb_pop,
    s.population as full_pop,
    s.rep_date

from
    dwh.rpt_cu_private_kli_summary s, dwh.rpt_sgmt_clients c
where

    s.partner_id::integer = $P{rpt_cu}
    and s.rep_date = $P{rpt_date_beg}
    and s.userid=c.userid

group by
    c.source, s.term_desc, s.name, s.grouping, 
    s.population, s.online, s.kli, s.rep_date
order by
    s.grouping,
    full_pop desc,
    s.term_desc;

上面的错误消息是什么意思?

[EDIT: This problem was a result of a bug within version 3.7.6]

The following postgresql query is returning an error:

operator does not exist date = boolean. 

I can't figure out why. Here is the postgresql code that is giving me the error:

select
    c.source,
    s.name,
    s.grouping,
    s.kli,
    s.term_desc,
    (s.population - s.online) as non_hb_pop,
    s.online as hb_pop,
    s.population as full_pop,
    s.rep_date

from
    dwh.rpt_cu_private_kli_summary s, dwh.rpt_sgmt_clients c
where

    s.partner_id::integer = $P{rpt_cu}
    and s.rep_date = $P{rpt_date_beg}
    and s.userid=c.userid

group by
    c.source, s.term_desc, s.name, s.grouping, 
    s.population, s.online, s.kli, s.rep_date
order by
    s.grouping,
    full_pop desc,
    s.term_desc;

What does the above error message mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我也只是我 2025-01-13 00:55:44

$P{rpt_date_beg} 的值是多少?这就是事情出错的地方。检查真实的查询,可能在错误日志中,并进行一些调试。也许日期值周围缺少一些引号 '。

What is the value for $P{rpt_date_beg} ? That's where things go wrong. Check the real query, might be in the errorlog, and do some debugging. Maybe some quotes ' are missing around the date value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文