Hi,
This is one of the transaction tables i need for my application.
DeptEmp
d005b001
d003b002
d004b003
d005b002
d002b001
d005b004
The values in the table are inserted after enough time gap, one after the other.
I want to find out the latest value that is stored for a specific record.
Like, for example, i have "select emp from <table> where dept = "d005""
This gives me b001, b002 and b004. But i want to get the latest entry, i.e., b004 as my answer.
Thank u.