Hi
I created my own aggregate function working as max(sum(value))
It adds positive and negative values and finds maximum of this sum.
To work properly this function needs data to be sorted.
select
maxsum(value)
from some_table
order by some_field
doesn't work:
ERROR: Attribute some_table.some_field must be GROUPed or used in an
aggregate function
I found I can obey this using subselect:
select
maxsum(X.value)
from
(select value
from some_table
order by some_field) X
I can't create subselect, because I want to change this query into a
view. In my case postgresql doesn't use indexes on subselect inside a view.
What should I do?
Regards,
Tomasz Myrta
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])
- Re: [SQL] order by and aggregate Tomasz Myrta
- Re: [SQL] order by and aggregate Richard Huxton
- Re: [SQL] order by and aggregate Tomasz Myrta
- [SQL] Sorry, to many clients already cristi
- Re: [SQL] Sorry, to many clients already Robert Treat
- Re: [SQL] order by and aggregate dev
- Re: [SQL] order by and aggregate Tomasz Myrta
- Re: [SQL] order by and aggregate Tom Lane
- Re: [SQL] order by and aggregate Tomasz Myrta
- Re: [SQL] order by and aggregate Tom Lane
- Re: [SQL] order by and aggregate Tomasz Myrta