错误:函数 avg(boolean) 不存在

发布于 2024-10-03 07:47:30 字数 201 浏览 3 评论 0原文

我想知道事件发生的频率,并且通过将布尔值设置为“TRUE”来记录数据库中此事件的发生,将其设置为“FALSE”而不发生。

但是当我尝试使用函数 avg() 选择值时,它会返回以下错误: 错误:函数 avg(boolean) 不存在

如何测量事件频率并在某个时间保持良好的性能?

谢谢。

若昂

I am trying to know how frequently an event happens, and the occurence of this event in my database is recorded by setting a boolean to 'TRUE' and the non-occurence is setting it to 'FALSE'.

But when I am try to select the value by using the function avg() it returns me this error:
ERROR: function avg(boolean) does not exist

How can I measure the event frequency and at the some time keep a good performance ?

Thank you.

Joao

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

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

发布评论

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

评论(3

江南烟雨〆相思醉 2024-10-10 07:47:30

你可以这样做:

AVG(CASE WHEN  myBooleanAttribute = TRUE THEN 1 ELSE 0 END)

You could do this:

AVG(CASE WHEN  myBooleanAttribute = TRUE THEN 1 ELSE 0 END)
城歌 2024-10-10 07:47:30

这会将值强制转换为 0 和 1

select avg(val::int);

This will coerce the value into 0's and 1's

select avg(val::int);
萌逼全场 2024-10-10 07:47:30

如果你转换为 int 你会得到一个 int 平均值,这不是很有用。相反尝试:

select avg(val::int::float4);

If you cast as int you will get an int average, which isnt very useful. Instead try:

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