From: | Emi Lu <emilu(at)encs(dot)concordia(dot)ca> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Amos Hayes <ahayes(at)polkaroo(dot)net>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Find min and max values across two columns? |
Date: | 2006-05-15 21:40:40 |
Message-ID: | 4468F558.7070407@encs.concordia.ca |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Hello,
I tried "select greatest(max(a), max(b)) from public.test", but I got
the following errors:
ERROR: function greatest(integer, integer) does not exist
HINT: No function matches the given name and argument types. You may
need to add explicit type casts.
May I know where I can read the docs about greatest & least please.
I am using PostgreSQL 8.0.7.
Thanks,
Ying
>Amos Hayes <ahayes(at)polkaroo(dot)net> writes:
>
>
>>I'm trying to build a query that among other things, returns the
>>minimum and maximum values contained in either of two columns.
>>
>>
>
>I think you might be looking for
>
> select greatest(max(columnA), max(columnB)) from tab;
> select least(min(columnA), min(columnB)) from tab;
>
>greatest/least are relatively new but you can roll your own in
>older PG releases.
>
> regards, tom lane
>
>---------------------------(end of broadcast)---------------------------
>TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>
>
From | Date | Subject | |
---|---|---|---|
Next Message | Scott Marlowe | 2006-05-15 21:50:08 | Re: Find min and max values across two columns? |
Previous Message | filippo2991 | 2006-05-14 21:40:49 | insert related data into two tables |