Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Last transaction of each transaction type
Message
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2003 Server
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01508934
Message ID:
01508938
Views:
40
>Hi
>
>I have a LOGFILE table, I was wondring if there was any SQL syntax where I could put into a cursor the last record of each
>type for a given jobno
>
>transaction type is C (4), and could be "NEW","AMEN","DEL","WUP","MIX","MILL" etc
>
>Jobno is C(14)
>
>I want give the option of displaying the date & time that the last tranaction of each type happened for a given job into a grid.
>
>Any help extremley appreciated

If all you want is to display JobNo, TransType, LastDate, then
select JobNo, TransType, max(DateFld) as LastDate from LogFile GROUP BY JobNo, TransType
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform