Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Statement & MAX()
Message
From
04/06/2007 08:50:47
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
SQL Statement & MAX()
Miscellaneous
Thread ID:
01230185
Message ID:
01230185
Views:
66
I have a table with the following structure:
Drwno     Rev       Date    Code
101        0      05/12/06   A
101        1      02/01/07   A
101        1      04/01/07   A
102        1      05/12/06   A
102        1      04/01/07   A
I would like an sql statement that has both the max rev and max date for each drawing number as follows:
Drwno     Rev       Date    
101        1      04/01/07  
101        1      04/01/07  
I have tried
SELECT a.drwno, MAX(a.rev) AS rev,MAX(a.date) as date FROM curShopIssue1 a INTO CURSOR curMaxRev GROUP BY a.drwno
This seems to work for the 'rev' but does not for 'date'. Any suggestions would be greatly appreciated.

Thanks in advance!
Next
Reply
Map
View

Click here to load this message in the networking platform