Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: DISTINCT and MAX
Hi,
Your question isn't the same as your actual query..your query will
provide all the distinct order numbers where the orderdate is the
max...here's a similar example:
SQL> SELECT ID FROM S_ORD WHERE DATE_ORDERED 2 = (SELECT MAX(DATE_ORDERED) FROM S_ORD); ID
110 111
In your written question you ask for multiple dates, which you'll never get using MAX..
Steve
Ole Christian wrote:
> My problem is like so:
> I want to select multipel orderdates which have the same date as the
> MAX-date of the table.
> But I'm just getting one date, the max date.
> I'm using this command:
>
> select distinct orderenumber from ordertable where orderdate=(select
> max(orderdate) from ordertable)
>
> Ole C.
> PS. I need help quickly...
Received on Fri Apr 06 2001 - 07:38:41 CDT
![]() |
![]() |