Re: Am I crazy or is this SQL not possible - Mailing list pgsql-sql

From Aaron Bono
Subject Re: Am I crazy or is this SQL not possible
Date
Msg-id bf05e51c0606011138t30bc43e2n79747115401de29d@mail.gmail.com
Whole thread Raw
In response to Re: Am I crazy or is this SQL not possible  (Yasir Malik <ymalik@cs.stevens.edu>)
List pgsql-sql
> This reminds me of an interview question:  I was asked how to get a
> maximum column from a table without using max.  How would you do that?
>
>

Select my_column
from my_table
order by my_column desc
limit 1

-- 
==================================================================Aaron BonoPresident                            Aranya
SoftwareTechnologies, Inc.http://www.aranya.com         We take care of your technology needs.Phone: (816) 695-6071
 
==================================================================


pgsql-sql by date:

Previous
From: "maTKO"
Date:
Subject: Re: Am I crazy or is this SQL not possible
Next
From: "Aaron Bono"
Date:
Subject: Re: Am I crazy or is this SQL not possible