Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can this be done in one SQL Select?
Message
From
08/02/2005 15:09:30
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00984864
Message ID:
00984875
Views:
28
>I need help in selecting records from the following table (simplified):
>
>CUST_ID
>ORD_DATE
>ORD_TIME
>
>For a given date (ORD_DATE), I need to select one order record per customer (CUST_ID) based on the time of order (ORD_TIME). For example, the Order Time should be the latest of the day.
>
>I would appreciate any suggestions.
>
>Thank you.

Dmitry,

Not tested, but would this work?
SELECT Cust_ID, MAX(Ord_Time) ;
  FROM MyTable ;
 WHERE Ord_Date = ?vp_OrdDate ;
 GROUP BY Cust_ID
HTH,
Jim
Previous
Reply
Map
View

Click here to load this message in the networking platform